/* ===== ROOT & BASE ===== */
:root {
  --blue: #0256ee;
  --blue-dark: #003dbb;
  --blue-light: #edf4ff;
  --yellow: #ffb703;
  --ink: #0b132b;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --serif: "Playfair Display", serif;
  --sans: "Poppins", sans-serif;
  --primary-accent: #0256ee;
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000919;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  width: 320px;
}

.loader-route {
  position: relative;
  width: 100%;
  height: 40px;
  margin-bottom: 24px;
}

.loader-route svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-path {
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
  stroke-dasharray: 4 6;
}

.route-progress {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawRoute 2.2s ease-in-out infinite;
}

.route-plane {
  position: absolute;
  offset-path: path("M6,30 C 60,8 110,42 160,18 C 210,-4 260,32 304,10");
  offset-rotate: auto;
  animation: flyRoute 2.2s ease-in-out infinite;
  color: #fff;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-8px, -8px);
}

@keyframes drawRoute {
  0% {
    stroke-dashoffset: 300;
  }

  50%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes flyRoute {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50%,
  100% {
    offset-distance: 100%;
    opacity: 1;
  }
}

.loader-word {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #ffffff !important;
  padding: 2px 0 10px 0;
  transition: all 0.4s ease;
  box-shadow: none !important;
  /* border-bottom: none !important; */
  border-bottom: 2px solid #0256ee !important;
}

.navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
  border-bottom: none !important;
}

.navbar-brand {
  padding: 0px;
  padding-left: 2rem;
  width: 200px;
}

.navbar-brand-text img {
  transition: transform 0.3s ease;
  padding: 0.2rem 1rem;
  border-radius: 0.4rem;
  transform: scale(0.9);
}

.navbar.scrolled .navbar-brand-text img {
  transform: scale(0.9);
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text) !important;
  margin: 0 16px;
  padding: 2px 0 !important;
  position: relative;
  text-shadow: none;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text) !important;
  text-shadow: none;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--blue);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--blue) !important;
}

.nav-call-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--ink);
  transform: translateY(10px);
  /* Keeps it aligned with logo, moved up slightly */
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-call-box:hover {
  background: #f4f8ff;
  transform: translateY(8px);
  box-shadow: 0 4px 12px rgba(2, 86, 238, 0.1);
}

.navbar.scrolled .nav-call-box {
  color: var(--ink);
}

.nav-call-box i {
  color: var(--blue);
  font-size: 1.2rem;
}

.navbar.scrolled .nav-call-box i {
  color: var(--blue);
}

.nav-call-box .call-label {
  font-size: 0.65rem;
  opacity: 0.8;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  color: var(--text);
}

.nav-call-box strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.btn-brand {
  background: #003dbb;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(2, 86, 238, 0.25);
  padding: 0.8rem 2rem !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-brand:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 86, 238, 0.35);
}

.btn-brand::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.btn-brand:hover::after {
  opacity: 1;
}

.btn-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.6rem 2rem !important;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero-swiper-container {
  width: 100%;
  position: relative;
  background: #ffffff !important;
  /* Clean white background */
  padding-top: 100px;
  /* Pushes the boxed slider below the fixed navbar with a gap */
  padding-bottom: 20px;
  /* Clean bottom margin */
}

/* Hero Slider Caption Positioning */

.hero-slide .carousel-caption {
  position: absolute;
  height: 35%;
  top: 30%;

  /* Content ke according width */
  width: fit-content;
  height: fit-content;
  max-width: 80%;

  /* Center */
  left: 50%;
  right: auto;
  transform: translateX(-50%);

  padding: 1rem;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.25);

  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.05) 45%,
    rgba(0, 0, 0, 0.08)
  );
}

/* Mobile adjust */
@media (max-width: 768px) {
  .hero-slide .carousel-caption {
    bottom: 20px;
    margin: 0 10px;
  }
  .hero-slide .carousel-caption h2 {
    font-size: 1.8rem;
  }
  .hero-slide .carousel-caption h3 {
    font-size: 1.2rem;
  }
}

.swiper-hero {
  width: calc(100% - 40px);
  margin: 0 auto;
  height: 80vh;
  min-height: 400px;
  max-height: 900px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  position: relative;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.hero-slide picture,
.hero-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
  top: 0;
  left: 0;
}

.hero-overlay {
  display: none;
  /* Overlay removed completely as requested */
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  color: #fff;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroCardEntrance 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  /* Compact margin */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 2.1rem;
  /* Compact title size */
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  /* Compact margin */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.hero-title em {
  font-style: normal;
  color: var(--yellow);
}

/* Custom Navigation Arrows */
.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.swiper-hero .swiper-button-next::after,
.swiper-hero .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-hero .swiper-button-next:hover,
.swiper-hero .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.swiper-hero .swiper-button-next {
  right: 25px;
}

.swiper-hero .swiper-button-prev {
  left: 25px;
}

/* Pagination Overrides */
.swiper-hero .swiper-pagination {
  bottom: 95px !important;
  /* Pushed up to make space for the search bar inside */
}

.swiper-hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-hero .swiper-pagination-bullet-active {
  background: var(--yellow);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ===== FLOATING SEARCH BAR ===== */
.hero-search-wrap {
  position: absolute;
  bottom: 25px;
  /* Placed perfectly inside the slider box on the image */
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: calc(100% - 60px);
  max-width: 620px;
}

.hero-search-form {
  background: #ffffff;
  border-radius: 50px;
  padding: 6px 6px 6px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-search-form:focus-within {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(2, 86, 238, 0.25);
}

.hero-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  padding-right: 15px;
}

.hero-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.hero-search-btn {
  background: var(--blue);
  color: #ffffff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-search-btn i {
  font-size: 1rem;
}

.hero-search-btn:hover {
  background: var(--blue-dark);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .hero-swiper-container {
    padding-top: 75px;
    padding-bottom: 20px;
  }

  .swiper-hero {
    height: 360px;
    /* Reduced tablet height */
    width: calc(100% - 30px);
  }

  .hero-content {
    padding: 0;
    max-width: 90%;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .swiper-hero .swiper-button-next,
  .swiper-hero .swiper-button-prev {
    display: none;
  }

  .hero-search-wrap {
    bottom: 15px;
    width: calc(100% - 50px);
  }

  .swiper-hero .swiper-pagination {
    bottom: 75px !important;
  }
}

@media (max-width: 768px) {
  .hero-swiper-container {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .swiper-hero {
    /* height: calc(100vh - 70px);
    height: calc(100dvh - 70px); */
    height: 50vh;
    width: 100%;
    border-radius: 0;
  }

  .hero-content {
    padding: 0;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }

  .hero-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .hero-content .btn-brand,
  .hero-content .btn-white {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
  }

  .hero-search-form {
    padding: 4px 4px 4px 18px;
  }

  .hero-search-input {
    font-size: 0.9rem;
  }

  .hero-search-btn {
    width: 38px;
    height: 38px;
  }

  .hero-search-wrap {
    bottom: 12px;
  }

  .swiper-hero .swiper-pagination {
    bottom: 65px !important;
  }

  /* Mobile padding and margin optimizations (matching stats section 30px padding) */
  .destinations-swiper-section,
  .about-section,
  .dark-section-grid,
  .international-swiper-section,
  .testimonial-section {
    padding: 30px 0 !important;
  }

  .destinations-swiper-section .section-container,
  .about-section .section-container,
  .dark-section-grid .section-container,
  .international-swiper-section .section-container,
  .testimonial-section .section-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .about-collage-wrap {
    padding-bottom: 0;
  }

  .about-section .about-collage {
    margin-bottom: 10px;
  }

  .about-section .row {
    --bs-gutter-y: 1.5rem;
  }

  /* Destinations section mobile optimizations */
  .swiper-destinations {
    height: 380px;
    padding: 10px 0;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 2;
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero-orb--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 8%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(2, 86, 238, 0.12), transparent 70%);
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

/* ===== SECTIONS ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 38px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.section-header h2:hover::after {
  width: 100px;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 16px auto 0;
}

/* ===== STATS ===== */
.counter-wrap {
  background: linear-gradient(135deg, var(--ink) 0%, #1c2541 100%);
  color: #fff;
  padding: 30px 0;
}

.counter-card h3 {
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.counter-card p {
  opacity: 0.75;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.counter-card {
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: scale(1.05);
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
  position: relative;
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  height: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(2, 86, 238, 0.18);
}

.card-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.destination-card .card-content {
  position: relative;
  z-index: 3;
  padding: 14px 16px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Badge styling */
.dest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.dest-badge.bestseller {
  background: rgba(2, 86, 238, 0.95);
  color: #ffffff;
}

.dest-badge.popular {
  background: rgba(255, 255, 255, 0.95);
  color: #0256ee;
}

.dest-badge.trending {
  background: rgba(14, 165, 233, 0.95);
  color: #ffffff;
}

/* Card content details */
.card-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.dest-name {
  color: #ffffff;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.dest-location {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dest-location i {
  color: var(--yellow);
  font-size: 0.8rem;
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.price-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1px;
}

.price-val {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

/* Backward compatibility for old HTML structure in destination cards */
.destination-card .card-title {
  color: #ffffff !important;
  font-family: var(--sans);
  font-size: 1.05rem !important;
  font-weight: 700;
  margin-bottom: 2px;
}

.destination-card .card-content div[style*="color: #777"] {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.7rem !important;
  font-weight: 500;
  margin-bottom: 1px;
}

.destination-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 2px;
}

.destination-card .price {
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.destination-card .details-link {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  width: 26px !important;
  height: 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-size: 0.7rem !important;
}

.destination-card .details-link:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

/* ===== INNER SWIPER ===== */
.inner-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.inner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-swiper .swiper-pagination {
  position: absolute;
  bottom: 8px;
  text-align: center;
  z-index: 10;
}

.inner-swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.8;
}

.inner-swiper .swiper-pagination-bullet-active {
  background: var(--yellow);
}

/* ===== ABOUT ===== */
.about-section {
  padding: 80px 0;
  position: relative;
}

/* Collage container */
.about-collage-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
}

.about-collage {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.15;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.collage-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70.5%;
  clip-path: polygon(0 0, 100% 0, 91.5% 100%, 0 100%);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.collage-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collage-left:hover img {
  transform: scale(1.04);
}

.collage-right {
  position: absolute;
  left: 66%;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  clip-path: polygon(17.6% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.collage-right img {
  flex: 1;
  min-height: 0;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collage-right img:hover {
  transform: scale(1.06);
}

/* Badge overlay */
.about-badge {
  position: absolute;
  /*left: 65%;*/
  /*top: 65%;*/
  left: 18%;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: #0d1e3d;
  /* Navy blue background */
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}

.about-badge:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.about-badge::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.about-badge i {
  color: #ffb703;
  /* Yellow briefcase */
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.about-badge .badge-num {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--sans);
}

.about-badge .badge-text {
  font-size: 0.6rem;
  opacity: 0.85;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  font-family: var(--sans);
}

/* Airplane Trails */
.about-trail-left-wrap {
  position: absolute;
  bottom: -35px;
  left: -25px;
  width: 150px;
  height: 80px;
  pointer-events: none;
  z-index: -1;
  /* Place below the collage wrap but visible on the bg */
}

.about-trail-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.about-trail-right-wrap {
  position: absolute;
  top: 15px;
  right: -30px;
  width: 90px;
  height: 45px;
  pointer-events: none;
  display: none;
  /* Hide on mobile/tablet */
}

@media (min-width: 1200px) {
  .about-trail-right-wrap {
    display: block;
  }
}

/* Right Content styling */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0256ee;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-eyebrow .eyebrow-line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #cbd5e1;
  position: relative;
}

.about-eyebrow .eyebrow-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 4px;
  background: #94a3b8;
}

.about-title-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 25px;
}

.about-title .highlight {
  color: #0256ee;
  position: relative;
  display: inline-block;
}

.about-title .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,7 C30,2 70,2 100,7' stroke='%23ffb703' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.about-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.about-btn-wrap {
  margin-top: 30px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0256ee;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px 10px 12px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 86, 238, 0.18);
  text-decoration: none;
}

.about-btn:hover {
  background: #003dbb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 86, 238, 0.28);
}

.about-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #0256ee;
  border-radius: 50%;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.about-btn:hover .btn-icon {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .about-collage {
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-title {
    font-size: 2.4rem;
  }
}

/* ===== DARK SECTION ===== */
.dark-section-grid {
  background: #1a1d2e;
  padding: 60px 0;
}

.dark-section-grid .section-header h2,
.dark-section-grid .section-header p {
  color: white;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 24px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.2);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.category-card .overlay h4 {
  color: white;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.category-card:hover .overlay h4 {
  border-bottom-width: 3px;
  padding-bottom: 8px;
  letter-spacing: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  background: #090e1d;
  /* Premium deep dark navy */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background blur orbs for modern dark aesthetic */
.testimonial-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 86, 238, 0.12), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.08), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.testimonial-section .section-container {
  position: relative;
  z-index: 2;
  /* Sit above the background blur orbs */
}

.testimonial-section .section-header h2 {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
}

.testimonial-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 15px auto 0;
}

.testimonial-sub-heading {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.6rem;
  color: white;
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 4px solid var(--blue);
  /* Crisp blue vertical sub-indicator */
  padding-left: 15px;
  letter-spacing: 0.5px;
}

.testi-card {
  background: #ffffff;
  /* Premium high-contrast white card */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testi-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  border-color: rgba(2, 86, 238, 0.35);
  box-shadow:
    0 20px 40px rgba(2, 86, 238, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.1);
}

.testi-card .inner-swiper {
  height: 200px;
}

.testi-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testi-card .card-body h6 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  /* Dark typography */
  margin-bottom: 5px;
}

.testi-card .card-body small {
  color: var(--muted);
  font-size: 0.85rem;
}

.video-card .inner-swiper {
  position: relative;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff0000;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 3px solid white;
  z-index: 20;
  pointer-events: none;
  transition: all 0.3s ease;
}

.video-card:hover .video-play-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.review-card {
  background: #ffffff;
  /* Premium high-contrast white card */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  border-color: rgba(2, 86, 238, 0.35);
  box-shadow:
    0 20px 40px rgba(2, 86, 238, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-card .profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-card .profile img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
}

.review-card:hover .profile img {
  border-color: var(--blue);
}

.review-card .profile h6 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  /* Dark typography */
  margin: 0;
}

.review-card .stars {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-top: 3px;
}

.review-card .quote {
  font-size: 0.95rem;
  color: var(--text);
  /* Charcoal gray body text */
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}

.review-card .quote::before {
  content: "\201C";
  font-size: 2.5rem;
  color: var(--yellow);
  position: absolute;
  left: -5px;
  top: -10px;
  font-family: var(--serif);
  line-height: 1;
}

.review-card .source {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Custom Swiper Pagination Overrides for Testimonials */
.testimonial-section .swiper-pagination {
  position: relative !important;
  margin-top: 40px !important;
  bottom: 0 !important;
}

.testimonial-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
  width: 9px !important;
  height: 9px !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}

.testimonial-section .swiper-pagination-bullet-active {
  background: var(--yellow) !important;
  width: 24px !important;
  border-radius: 5px !important;
}

/* ===== PARTNERS SWIPER ===== */
.swiper-partners {
  width: 100%;
  padding: 30px 10px 30px;
  overflow: hidden;
}

.swiper-partners .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  transition: all 0.3s ease;
  width: 130px;
  /* Force swiper slides to match the new circular size */
}

.swiper-partners .swiper-slide:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.swiper-partners .swiper-slide img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  object-fit: contain;
  padding: 14px;
  /* Less padding proportion for more content space */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  filter: grayscale(0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-partners .swiper-slide:hover img {
  border-color: var(--blue);
  box-shadow:
    0 0 0 5px rgba(2, 86, 238, 0.12),
    0 12px 25px rgba(2, 86, 238, 0.15);
  transform: translateY(-6px);
  filter: grayscale(0);
}

.swiper-partners .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-partners .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.5;
}

.swiper-partners .swiper-pagination-bullet-active {
  background: var(--yellow);
  opacity: 1;
}

#mobile-btn{
  padding: 0 !important;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(2, 86, 238, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(2, 86, 238, 0.5);
}

.back-to-top:active {
  transform: scale(0.9);
}

/* ===== PULSE GLOW ===== */
.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(2, 86, 238, 0.25);
  }

  50% {
    box-shadow:
      0 4px 30px rgba(2, 86, 238, 0.5),
      0 0 60px rgba(2, 86, 238, 0.1);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: #ffffff;
  padding: 60px 0 0px 0;
  border-top: none;
}

.footer h5 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

.footer h6 {
  color: #ffffff !important;
}

.footer h5::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
  position: absolute;
  bottom: -8px;
  left: 0;
  transition: width 0.3s ease;
}

.footer h5:hover::after {
  width: 50px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer ul li i {
  color: var(--yellow);
  width: 20px;
  transition: transform 0.3s ease;
}

.footer ul li:hover i {
  transform: scale(1.2);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: 0.2s;
  position: relative;
}

.footer ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.footer ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer ul li a:hover::after {
  width: 100%;
}

.footer .social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer .social-icons a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
  border-color: var(--yellow);
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-outline-brand {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-brand:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 86, 238, 0.25);
}

.pre-details {
  background: #e7e7e7;
  width: 100%;
  border-radius: 10px;
  padding: 1rem;
  color: var(--ink);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .nav-call-box {
    display: none;
  }

  .navbar {
    padding: 5px 0;
  }

  .navbar-nav .nav-link {
    color: var(--text) !important;
  }
}

@media (max-width: 600px) {
  .navbar-brand {
    width: 150px;
  }

  .hero-swiper-container .swiper-button-next,
  .hero-swiper-container .swiper-button-prev {
    display: none;
  }

  .section-container {
    padding: 50px 16px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .navbar-brand {
    padding-left: 0px;
  }

  .btn-white {
    display: none;
  }

  .hero-title {
    margin-bottom: 40px;
    font-size: 2.5rem;
  }

  .hero-orb {
    display: none;
  }

  [data-aos] {
    transition-duration: 0.6s !important;
  }
}

.swiper-international {
  height: 365px !important;
}

section {
  padding: 50px 0;
}

.swiper-destinations {
  height: 450px;
  padding: 2rem 0;
}

#mainNav .fa-bars {
  color: #fff !important;
  transition: 0.3s;
}

#mainNav.scrolled .fa-bars {
  color: #000 !important;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.footer ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.footer ul li a:hover {
  color: var(--blue);
  padding-left: 5px;
}

.footer ul li a:hover::after {
  width: 100%;
}

.footer .social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: white;
  color: var(--blue);
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer .social-icons a:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(2, 86, 238, 0.25);
}

.footer .copyright {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-outline-brand {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-brand:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 86, 238, 0.25);
}

.pre-details {
  background: #e7e7e7;
  width: 100%;
  border-radius: 10px;
  padding: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .nav-call-box {
    display: none;
  }

  .navbar {
    padding: 5px 0;
  }

  .navbar-nav .nav-link {
    color: var(--text) !important;
  }
}

@media (max-width: 600px) {
  .navbar-brand {
    width: 150px;
  }

  .hero-swiper-container .swiper-button-next,
  .hero-swiper-container .swiper-button-prev {
    display: none;
  }

  .section-container {
    padding: 50px 16px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .navbar-brand {
    padding-left: 0px;
  }

  .btn-white {
    display: none;
  }

  .hero-title {
    margin-bottom: 40px;
    font-size: 2.5rem;
  }

  .hero-orb {
    display: none;
  }

  [data-aos] {
    transition-duration: 0.6s !important;
  }
}

.swiper-international {
  height: 365px !important;
}

section {
  padding: 50px 0;
}

.swiper-destinations {
  height: 450px;
  padding: 2rem 0;
}

#mainNav .fa-bars {
  color: var(--text) !important;
  transition: 0.3s;
}

#mainNav.scrolled .fa-bars {
  color: var(--text) !important;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

#mainNav .fa-bars {
  color: var(--text) !important;
  transition: 0.3s;
}

#mainNav.scrolled .fa-bars {
  color: var(--text) !important;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}
.why-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.why-subtitle {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 60px;
}
.feature-card {
  transition:
    transform 0.4s var(--transition-smooth),
    box-shadow 0.4s var(--transition-smooth),
    border-color 0.4s var(--transition-smooth);
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transition: width 0.4s var(--transition-smooth);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(2, 86, 238, 0.06);
  border-color: rgba(2, 86, 238, 0.12);
}
.feature-card:hover::after {
  width: 100%;
}
.feature-icon-wrapper {
  margin-bottom: 24px;
  height: 76px;
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf4ff 0%, #dbeafe 100%);
  border: 1px solid rgba(2, 86, 238, 0.08);
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 0 5px rgba(2, 86, 238, 0.08),
    0 8px 16px rgba(2, 86, 238, 0.04);
  transition:
    background 0.4s var(--transition-smooth),
    border-color 0.4s var(--transition-smooth),
    box-shadow 0.4s var(--transition-smooth),
    transform 0.4s var(--transition-smooth);
}
.feature-icon-wrapper svg,
.feature-icon-wrapper img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.4s var(--transition-smooth);
}
.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #fff3d6 0%, #ffe3a8 100%);
  border-color: rgba(255, 183, 3, 0.2);
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 0 5px rgba(255, 183, 3, 0.25),
    0 8px 24px rgba(255, 183, 3, 0.12);
  transform: scale(1.05) rotate(5deg);
}
.feature-card:hover .feature-icon-wrapper svg,
.feature-card:hover .feature-icon-wrapper img {
  transform: scale(1.1) rotate(-5deg);
}
.feature-title {
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s var(--transition-smooth);
}
.feature-card:hover .feature-title {
  color: var(--blue);
}
.feature-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== LEGACY SECTION ===== */
.legacy-section {
  padding: 100px 0;
  background: #ffffff;
}
.legacy-card {
  transition: transform 0.3s var(--transition-smooth);
  padding: 10px;
}
.legacy-card:hover {
  transform: translateY(-5px);
}
.legacy-icon-wrapper {
  height: 80px;
  width: 80px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legacy-icon-wrapper svg,
.legacy-icon-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.3s var(--transition-smooth);
}
.legacy-card:hover .legacy-icon-wrapper svg,
.legacy-card:hover .legacy-icon-wrapper img {
  transform: scale(1.1);
}

/* Feature Card Numbering */
.card-number {
  font-family: var(--sans);
  font-size: 3.8rem;
  font-weight: 800;
  color: rgba(2, 86, 238, 0.03);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
  transition:
    color 0.4s var(--transition-smooth),
    transform 0.4s var(--transition-smooth);
}
.feature-card:hover .card-number {
  color: rgba(255, 183, 3, 0.09);
  transform: translateY(-5px);
}

/* ===== PACKAGE LISTING GRID & FILTER SIDEBAR ===== */
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .listing-layout {
    grid-template-columns: 1fr;
  }
}

button {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  border: none;
  padding: 8px;
  font-size: 15px;
  background: rgb(4 176 206);
  color: white;
  box-sizing: border-box;
  font-weight: 500;
}
.mybtn {
  cursor: pointer;
  border: none;
  padding: 8px;
  font-size: 15px;
  background: rgb(4 176 206);
  color: white;
  font-family: cursive;
  box-sizing: border-box;
  font-weight: 500;
}

.btn-outline-light:hover {
  background: rgb(4 176 206);
  color: white;
}
/************************************/
.my-btn {
  background-color: rgb(4 176 206);
  color: #fff;
  font-weight: 600;
  font-family: inherit;
}
.my-btn:hover {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
  border: 1px solid black;
  background-color: rgb(4 176 206);
  color: white;
}

/* Sidebar Styling */
.refine-sidebar {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  align-self: start;
}
.refine-title {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}
.filter-group {
  margin-bottom: 24px;
}
.filter-group-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
  user-select: none;
}
.filter-checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: #e53e3e;
  cursor: pointer;
}
.filter-checkbox-label span.count {
  color: #94a3b8;
  margin-left: auto;
  font-size: 0.8rem;
}

/* Red Range Slider styling */
.price-slider-wrap {
  margin-bottom: 15px;
}
.price-range-slider {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 5px;
  outline: none;
  accent-color: #e53e3e;
  -webkit-appearance: none;
}
.price-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e53e3e;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.price-slider-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

/* Right Grid Area Header */
.listing-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}
.listing-main-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0;
}
.listing-sort-select {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
  color: #334155;
  outline: none;
  background: #ffffff;
  cursor: pointer;
}

/* Grid layout for cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Card Style & Overlay */
.package-card-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 390px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  background: #020617;
  transition:
    transform 0.4s var(--transition-smooth),
    box-shadow 0.4s var(--transition-smooth);
}
.package-card-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}
.package-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card-container:hover .package-card-img {
  transform: scale(1.06);
}

/* Front Face Overlay */
.package-front-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition:
    opacity 0.4s var(--transition-smooth),
    transform 0.4s var(--transition-smooth);
}
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-rating-badge {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-wishlist-btn {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}
.card-wishlist-btn:hover {
  background: #ef4444;
}

.card-bottom-area {
  display: flex;
  flex-direction: column;
}
.card-badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.badge-rec {
  background: #e53e3e;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-duration {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}
.card-pkg-title {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.card-old-price {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.card-new-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}
.card-discount-badge {
  background: rgba(72, 187, 120, 0.2);
  border: 1px solid rgba(72, 187, 120, 0.3);
  color: #48bb78;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.card-dest-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hover Face Overlay */
.package-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.4s var(--transition-smooth),
    transform 0.4s var(--transition-smooth);
  pointer-events: none;
}
.package-card-container:hover .package-hover-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.package-card-container:hover .package-front-overlay {
  opacity: 0;
  transform: translateY(-15px);
}

.hover-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reward-points-badge {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.hover-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

/* Hover Services Grid (3 cols x 2 rows) */
.hover-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.hover-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hover-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.3s;
}
.hover-service-item.active .hover-service-icon {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.hover-service-item.disabled .hover-service-icon {
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.25);
}
.hover-service-item span {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
}

.hover-itinerary-area {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
.hover-itinerary-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #3b82f6;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.hover-itinerary-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.4;
  max-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn-hover-view {
  background: #e53e3e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s;
}
.btn-hover-view:hover {
  background: #c53030;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Hover Services Styles matching user upload */
.hover-services-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  margin-bottom: 12px;
}
.hover-services-list {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hover-service-item-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 60px;
}
.hover-service-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #337ab7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.hover-service-item-active:hover .hover-service-icon-circle {
  transform: translateY(-2px);
}
.hover-service-label {
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

/* Custom Premium Breadcrumb Styles */
.custom-breadcrumb {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 24px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin: 0 auto 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  list-style: none;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.custom-breadcrumb .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
}

.custom-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}

/* Custom separator style (chevron icon/character instead of generic slash) */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105" !important; /* FontAwesome right angle chevron */
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  padding-right: 12px !important;
  padding-left: 12px !important;
  font-size: 0.75rem;
}

.custom-breadcrumb .breadcrumb-item a i {
  margin-right: 6px !important;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: var(
    --yellow,
    #ffb703
  ) !important; /* Gold/yellow highlighting active page */
  font-weight: 600;
}

/* Hover style for Back to Destinations link */
.back-dest-link:hover {
  color: #e53e3e !important;
}

/* Header navigation back button style */
.back-dest-link-header:hover {
  border-color: #337ab7 !important;
  color: #337ab7 !important;
  background: #f8fafc !important;
}

/* --- Enhanced Modern Styles --- */
:root {
  --theme-blue: #0f6cbf;
  --theme-hover: #0a4d8a;
  --soft-bg: #f8f9fc;
  --border-light: #e9edf4;
}

.package-detail-wrapper {
  background: var(--soft-bg);
  padding: 10px 0 0px;
}

/* --- Left Content Block --- */
.detail-content-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.detail-title {
  font-family: var(--serif, sans-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.detail-sightseeing {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 25px;
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 15px;
}

.detail-sightseeing strong {
  color: #1a1a2e;
}

.overview-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.overview-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* --- Icons Style --- */
.meta-icons-row {
  display: flex;
  gap: 35px;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.meta-icons-row .meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.meta-icons-row .meta-item .icon-box {
  width: 50px;
  height: 50px;
  background: #eef5fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-blue);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.meta-icons-row:hover .meta-item .icon-box {
  background: var(--theme-blue);
  color: #fff;
}

.meta-icons-row .meta-item .meta-text {
  display: flex;
  flex-direction: column;
}

.meta-icons-row .meta-item .meta-text span {
  font-size: 0.75rem;
  color: #8a94a6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-icons-row .meta-item .meta-text strong {
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-top: 2px;
}

/* --- Premium Price Card --- */
.price-section-detail {
  background: linear-gradient(to right, #f1f7fe, #ffffff);
  border-left: 4px solid var(--theme-blue);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(15, 108, 191, 0.08);
}

.price-section-detail .price-label {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.price-section-detail .price-box {
  text-align: right;
}

.price-section-detail .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--theme-blue);
  line-height: 1.2;
}

.price-section-detail .price small {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}

.price-section-detail .price-sub {
  font-size: 0.8rem;
  color: #6c757d;
  display: block;
}

/* --- Premium Modern Tabs Style --- */
.custom-tabs {
  border-bottom: none;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.custom-tabs .nav-link {
  color: #475569;
  border: 1px solid #e2e8f0 !important;
  font-weight: 600;
  padding: 10px 22px;
  background: #f8fafc;
  border-radius: 30px !important; /* Pill capsule layout */
  transition: all 0.2s ease;
  font-size: 0.92rem;
}

.custom-tabs .nav-link.active {
  background-color: var(--theme-blue, #0f6cbf) !important;
  color: #fff !important;
  border-color: var(--theme-blue, #0f6cbf) !important;
  box-shadow: 0 4px 12px rgba(15, 108, 191, 0.2);
}

.custom-tabs .nav-link:hover:not(.active) {
  background-color: #f1f5f9;
  border-color: #cbd5e1 !important;
  color: var(--theme-blue);
}

.tab-content {
  background: #fff;
  padding: 30px;
  border: 1px solid #e2e8f0;
  margin-bottom: 0;
  border-radius: 16px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* --- Timeline Itinerary --- */
.itinerary-block {
  position: relative;
  padding-left: 25px;
  margin-bottom: 25px;
  border-left: 3px solid var(--theme-blue);
  padding-bottom: 5px;
}

.itinerary-block:last-child {
  border-left: 3px solid var(--theme-blue);
  padding-bottom: 0;
  margin-bottom: 0;
}

.itinerary-block h5 {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.itinerary-block p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.tab-content ul {
  padding-left: 20px;
  color: #555;
  line-height: 2;
}

.tab-content ul li::marker {
  color: var(--theme-blue);
}

/* --- Right Side Booking Form (Premium) --- */
.booking-form-wrapper {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 10%;
}

.booking-form-wrapper h4 {
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.booking-form-wrapper h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--theme-blue);
  border-radius: 2px;
}

.booking-form-wrapper .form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e1e5ea;
  background: #fafbfc;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.booking-form-wrapper .form-control:focus {
  border-color: var(--theme-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 108, 191, 0.1);
}

.booking-form-wrapper textarea {
  min-height: 90px;
  resize: vertical;
}

.booking-form-wrapper .btn-send {
  width: 100%;
  background: var(--theme-blue);
  background: linear-gradient(
    135deg,
    var(--theme-blue) 0%,
    var(--theme-hover) 100%
  );
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s ease;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.booking-form-wrapper .btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 108, 191, 0.3);
}

@media (max-width: 991px) {
  .meta-icons-row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .custom-tabs .nav-link {
    padding: 8px 15px;
    font-size: 0.9rem;
    margin-bottom: 3px;
  }

  .detail-content-block {
    padding: 20px;
  }

  .booking-form-wrapper {
    margin-top: 30px;
    position: static;
  }

  .price-section-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .price-section-detail .price-box {
    text-align: left;
    width: 100%;
  }
}

/* ===== DETAIL PAGE IMAGE GALLERY GRID & LIGHTBOX ===== */
.image-gallery-grid .gallery-main-img-wrap:hover img,
.image-gallery-grid .gallery-thumb-wrap:hover img {
  transform: scale(1.04);
}

.image-gallery-grid .overlay-text {
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s;
}
.image-gallery-grid .gallery-thumb-wrap:hover .overlay-text {
  background: rgba(0, 0, 0, 0.6);
}

/* Amenities Inclusions Bar (Jaisa Image me hai) */
.amenities-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 25px 0 35px;
  padding: 20px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 60px;
  transition: opacity 0.3s;
}
.amenity-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}
.amenity-item:hover .amenity-icon-circle {
  transform: translateY(-3px);
}
.amenity-item span {
  font-size: 0.68rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
}
.amenity-item.disabled {
  filter: grayscale(1) opacity(0.25);
}

/* Lightbox Modal Hover Effects */
.lightbox-close:hover {
  color: #ef4444 !important;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Custom Wide Section Container for Detail Page */
.section-container-detail {
  max-width: 1350px;
  margin: 0 auto;
  padding: 20px 24px;
}
@media (max-width: 1399px) {
  .section-container-detail {
    max-width: 1200px;
  }
}
@media (max-width: 1199px) {
  .section-container-detail {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .section-container-detail {
    max-width: 100%;
    padding: 15px 15px;
  }
}

/* Accordion Timeline Plus/Minus Circles Override */
#itineraryAccordion .accordion-button::after {
  background-image: none !important;
  content: "\f067" !important; /* FontAwesome Plus (+) icon */
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 0.82rem;
  color: #94a3b8;
  width: 24px;
  height: 24px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

#itineraryAccordion .accordion-button:not(.collapsed)::after {
  content: "\f068" !important; /* FontAwesome Minus (-) icon */
  background-image: none !important;
  transform: none !important;
  color: var(--theme-blue, #0f6cbf);
  border-color: var(--theme-blue, #0f6cbf);
}

@media(max-width:991px)
{
  .navbar-nav{
    gap:10px;
  }
}
