*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, p{
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
body { font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; 
        background: white; color: #1a1a1a; overflow-x: hidden; }
a { text-decoration: none; }

.heading{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.95; 
    font-weight: 600;
}

.para{
    font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 1.75; 
    font-weight: 300;
    color: black;
}



/*headings and eyebrows */

.pkg-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #002c3e;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}
.pkg-section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: black;
}
.pkg-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: black;
    margin: 0;
    line-height: 1.1;
}
.pkg-section-title em { color: #f0c000; font-style: italic; }


/*heading ends and eyebrows */


.button1{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s, gap 0.25s;
    width: fit-content;
}
.button1 svg {
    flex-shrink: 0;
}

.background-yellow{
    background-color: #FFCC00;
    color: black;
}

.background-yellow:hover{
    background-color: black;
    color: white;
    gap: 16px;
}

.button-white{
    background-color: white;
    color: black;
    border: 1px solid white;
}

.button-white:hover{
    background-color: black;
    color: white;
    gap: 16px;
    border: 1px solid white;
}

.button-white:hover{
    background-color: black;
    color: white;
    gap: 16px;
}




/* ══════════════════════════════════
   CARD — reusable across the site
   ══════════════════════════════════ */
.pkg-card {
    /* border: 1px solid rgba(0, 0, 0, 0.081); */
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 14px;;}

.pkg-card-image {
    position: relative;
    height: 360px;
    overflow: hidden;
}
.pkg-card-img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-card-img-bg { transform: scale(1.07); }

/* Category badge */
.pkg-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    padding: 5px 12px;
    z-index: 2;
}
.badge--trekking       { background: rgba(8,80,65,0.88);   color: #9fe1cb; }
.badge--mountaineering { background: rgba(12,68,124,0.88); color: #b5d4f4; }
.badge--biking         { background: rgba(99,56,6,0.88);   color: #fac775; }
.badge--wildlife       { background: rgba(39,80,10,0.88);  color: #c0dd97; }

/* Featured badge */
.pkg-card-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    padding: 5px 11px;
    background: #002c3e;
    color: #fff;
    z-index: 2;
}

/* Price pill on image */
.pkg-card-price {
    bottom: 14px;
    right: 14px;
    background: #fff;
    z-index: 2;
}
.pkg-price-from {
    display: block;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #131313ad;
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

}
.pkg-price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #002c3e;
    font-weight: 400;
    line-height: 0.8;
    margin-left: 8px;
}

/* Card body */
.pkg-card-body { padding: 20px 22px 22px; background: #fff; }
.pkg-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9aa8b0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
}
.pkg-card-location svg { flex-shrink: 0; opacity: 0.5; }
.pkg-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #002c3e;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 14px;
}
.pkg-card-divider { width: 100%; height: 1px; background: #eee; margin-bottom: 14px; }
.pkg-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pkg-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 15px; }
.pkg-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid #8e8e8e;
    color: #1d1d1dcf;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
}
.pkg-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffcc00;
    color: black;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 26px;
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 20px;
}
.pkg-card-btn:hover { background: black; color: #fff; }

.pkg-card.pkg-card--hidden { display: none; }






/* ════════════════════════════
   TOP BAR
════════════════════════════ */
.top-bar {
  background: #000;
  padding: 0 52px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 200;
}
.top-bar-left {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.48);
    font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

}
.top-bar-left i { color: #FFCC00; font-size: 13px; }
.top-bar-right { display: flex; align-items: center; gap: 22px; }
.top-bar-right a {
  color: rgba(255,255,255,0.42);
  font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}

.customize-trip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 50px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #000;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

/* Rotating animated border */
.customize-trip::before {
  content: "";
  position: absolute;
  width: 999px;
  height: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: conic-gradient(
    rgba(0,0,0,0),
    #ffcc00,
    rgba(0,0,0,0) 25%
  );
  animation: spinBorder 4s linear infinite;
  z-index: -2;
}

/* Inner dark layer */
.customize-trip::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: #000;
  border-radius: 50px;
  z-index: -1;
}

/* Hover */
.customize-trip:hover {
  color: #fff;
}

@keyframes spinBorder {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.top-bar-right a:hover { color: rgba(255,255,255,0.85); }
.btn-quote {
  background: #FFCC00; color: #000 !important;
    font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
  height: 38px;
  padding: 0px 15px;
  display: flex; align-items: center; justify-content: center;
}
.btn-quote:hover { background: #e6b800 !important; }

/* ════════════════════════════
   MAIN NAV
════════════════════════════ */
.main-nav {
  background: rgba(0, 0, 0, 0);
  padding: 0 52px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
  z-index: 200;
  transition: box-shadow 0.3s;
  position: absolute;
  width: 100vw;
  backdrop-filter: blur(5px);
}
.main-nav.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

nav ul { margin: 0; }
.nav-logo { height: 100%; display: flex; align-items: center; gap: 11px; }
.nav-logo-icon {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.nav-logo-icon img { height: 90%; object-fit: contain;}
.nav-logo-icon i { color: #FFCC00; font-size: 17px; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: #000;
  display: block; line-height: 1.1;
}
.nav-logo-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #999;
  display: block; margin-top: 1px;
}
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { position: relative; }
.nav-links li a {
  font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 13px; font-weight: 900;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #ffffff; padding: 10px 13px;
  display: flex; align-items: center; gap: 3px;
  transition: color 0.2s;
}
.nav-links li a i { font-size: 11px; opacity: 0.35; transition: opacity 0.2s; }
.nav-links li a:hover { color: #ffffffd4; }
.nav-links li a:hover i { opacity: 0.7; }
.btn-contact {
  background: #000; color: #fff;
    font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 9px 22px;
  display: flex; align-items: center; gap: 7px;
  transition: background 0.2s;
  border-radius: 50px;
}
.btn-contact i { color: #FFCC00; font-size: 13px; }
.btn-contact:hover { background: #222; color: #fff; }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease; z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img,
.hero-slide video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.hero-slide.active img,
.hero-slide.active video { transform: scale(1); }
.hero-overlay-left {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to right, rgb(0 0 0 / 39%) 0%, rgb(0 0 0 / 17%) 38%, rgba(0, 0, 0, 0.08) 68%, transparent 100%)
}
.hero-overlay-bottom {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 42%);
}
.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5; max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #FFCC00;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 26px; height: 1.5px;
  background: #FFCC00; flex-shrink: 0;
}
.hero-title {
  
  color: #fff; 
  margin-bottom: 16px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-title em { color: #FFCC00; }
.hero-para {
  
  color: rgba(255,255,255,1);
  max-width: 460px; margin-bottom: 28px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-buttons { display: flex; align-items: center; gap: 18px; }
.btn-hero-primary {
  background: #FFCC00; color: #000;
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 26px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.btn-hero-primary:hover { background: #e6b800; color: #000; }
.btn-hero-secondary {
  font-family: 'Barlow', sans-serif;
  color: rgba(255,255,255,0.62);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-hero-secondary:hover { color: #FFCC00; border-color: #FFCC00; }
.hero-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: #FFCC00;
  z-index: 7; width: 0%; opacity: 0.8;
}

/* ════════════════════════════
   CAROUSEL CTRL — lives inside .hero, never scrolls
════════════════════════════ */
.carousel-ctrl {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 14px;
  height: 34px;
  border-radius: 100px;
  white-space: nowrap;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.181);
}
.ctrl-arrow {
  width: 28px; height: 34px;
  background: none; border: none;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
}
.ctrl-arrow:hover { color: #FFCC00; }
.ctrl-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  justify-content: center;
}
.ctrl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
  border: none;
  padding: 0;
  display: block;
}
.ctrl-dot.active {
  background: #FFCC00;
  transform: scale(1.3);
}

/* ════════════════════════════
   FILTER — docks on scroll with smooth width animation
════════════════════════════ */
#filterSentinel { height: 1px; }

.filter-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  margin-top: -28px;
  width: 100%;
}
.filter-outer.docked {
  position: fixed;
  top: 0; left: 0; right: 0;
  margin-top: 0;
}

/*
  Card starts at 600px.
  JS adds .expanding → smoothly grows to 100vw.
  Only AFTER that transition does JS add .docked to outer.
  So position:fixed fires when card is already full-width — zero snap.
*/
.filter-card {
  background: #fff;
  display: flex;
  align-items: stretch;
  border-radius: 50px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  width: 600px;
  max-width: 96vw;
  overflow: hidden;
  transition:
    width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    max-width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-radius 0.44s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.44s ease;
}
/* Step 1: JS adds this class — card expands smoothly while still in flow */
.filter-card.expanding {
  width: 100vw;
  max-width: 100vw;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: all 0.2s ease;
}
/* Step 2: once docked, card is already full width — no transition needed */
.filter-outer.docked .filter-card {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: none;
}

/* Inner wrapper always keeps content centered at max 600px */
.filter-card-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.filter-group {
    padding: 25px 22px 25px 40px;
  flex: 1;
  border-right: 1px solid #eee;
}
.filter-group:last-of-type { border-right: none; }
.filter-label {
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #bbb; margin-bottom: 4px; display: block;
}
.filter-select-wrap { position: relative; }
.filter-select-wrap::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #aaa;
  pointer-events: none;
}
.filter-select {
  width: 100%; border: none; outline: none;
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 15px; color: #111;
  background: transparent; appearance: none;
  cursor: pointer; padding: 2px 0;
}
.filter-budget { display: flex; align-items: center; gap: 7px; }
.filter-budget input {
  width: 72px; border: none; outline: none;
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 15px; color: #111;
  background: transparent; padding: 2px 0;
}
.filter-budget input::placeholder { color: #ccc; }
.filter-budget-sep { color: #ddd; font-size: 12px; flex-shrink: 0; }
.filter-btn {
    padding: 0 30px 0 24px;
  background: #FFCC00; color: #000; border: none;
    font-family: geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0; white-space: nowrap;
}
.filter-btn i { font-size: 14px; }
.filter-btn:hover { background: black; color: white; }

/* Spacer prevents content jump when filter docks */
.filter-spacer { display: none; height: 54px; }
.filter-spacer.visible { display: block; }

/* Nav placeholder prevents jump when nav goes sticky */
.main-nav-placeholder { height: 90px; display: none; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */

@media (max-width: 1200px){
    .nav-links { display: none; }
}


@media (max-width: 900px) {
  .top-bar, .main-nav { padding: 0 20px; }
  
  .hero-content { left: 28px; right: 20px; }
  .carousel-ctrl { bottom: 30px; }
  .filter-outer { margin-top: -20px; }
  .filter-card { max-width: 96vw; flex-wrap: wrap; }
  .filter-group { flex: 1 1 45%; }
  .filter-btn {  justify-content: center; padding: 30px; }
}

@media (max-width: 650px) {
  .top-bar-right a{
    font-size: 9px;
  }
}

@media (max-width: 600px){
    .filter-card-inner{
    flex-wrap: wrap;
  }

  .filter-group{
    flex: 0 0 calc(50% - 8px);
  }

  .filter-btn{
    flex: 0 0 100%;
  }

  .filter-card{
    border-radius: 10px;
  }

  .filter-group{
    padding: 15px;
  }

    .filter-btn {
        padding: 15px;
    }

    .top-bar{
        display: none;
    }

    .main-nav{
        height: 80px;
    }

    .button1{
        gap: 8px;
        font-size: 9px;
        letter-spacing: 0.5px;
        padding: 13px 24px;
    }

    .carousel-ctrl{
        height: 25px;
        padding: 0px;
    }

    .ctrl-indicators {
        gap: 5px;
    }


    .filter-select, .filter-budget input{
        font-size: 12px;
    }



    .filter-btn{
        font-size: 10.5px;
    }

}

@media (max-width: 500px) {
  .top-bar-left p{
    display: none;
  }

  .nav-logo-icon img{
    height: 50px;
  }

  
}

@media (max-width: 400px) {
  .filter-group{
    flex: 0 0 calc(45% - 1px);
  }
}















/* featured packages */


.pkg-section {
    background: white;
    padding: 80px 0 100px;
}
.pkg-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pkg-section-filters { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.pkg-tab {
    background: transparent;
    border: 1px solid rgba(0,44,62,0.25);
    color: rgba(0,44,62,0.5);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    cursor: pointer;
    font-family: Geograph, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; 

    /* font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 600;
    transition: all 0.2s;
}
.pkg-tab:hover { border-color: #ffcc00; color: black; }
.pkg-tab.active { background: #ffcc00; border-color: #ffcc00; color: black; }

/* Grid */
.pkg-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}











/* Responsive */
@media (max-width: 991px) {
    .pkg-card-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .pkg-tab{
        padding: 6px 15px;
        letter-spacing: 1px;
        font-size: 8px;
    }
}
@media (max-width: 575px) {
    .pkg-card-grid { grid-template-columns: 1fr; }
    .pkg-section-title { font-size: 32px; }
    .pkg-card-image { height: 300px; }
}