:root {
  --teal: #fcdc88;
  --main-brown: #77421b;
  --dark-brown: #482411;
  --darkest-brown: #180a02;
  --mid-brown: #5f3013;
  --mid-black: #080706;
  --faded-white: rgba(255, 255, 255, 0.7);
  --faded-white2: rgba(255, 255, 255, 0.8);
  --white: #fff;
  --brown-white: #fffceb;
  --green: #1a8a10;


  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(14px + 1.6vw);
  --fs-3: calc(12px + 0.45vw);
  --fs-4: 18px;
  --fs-5: 17px;
  --fs-6: 16px;
  --fs-7: 15px;
  --fs-8: 14px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;


  --transition: 0.25s ease-in-out;


  --section-padding: 30px;

  --radius-15: 15px;
  --radius-25: 25px;

}


@font-face {
    font-family: "rockybilly";
    src: url("../../Fonts/rockybilly/Rockybilly.woff2") format("woff2"),
         url("../../Fonts/rockybilly/Rockybilly.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}



.tour-tabs {
    width: 100%;
    border-bottom: 2px solid var(--mid-brown);
}

.tour-tabs .nav-item {
    flex: 1;
    text-align: center;
}

.tour-tabs .nav-link {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 14px 10px;
    font-weight: 600;
    color: var(--dark-brown);
    background: #fff;
    transition: all 0.3s ease;
}

.tour-tabs .nav-link:hover {
    background: var(--teal);
    color: var(--darkest-brown);
}

.tour-tabs .nav-link.active {
    background: var(--main-brown);
    color: #fff;
    border-bottom: 3px solid var(--teal);
}

.swiper-button-next, .swiper-button-prev {
  color: var(--teal);
}

/* Thumbnail gallery */
.thumbSwiper {
    padding-top: 10px;
}

.thumbSwiper .swiper-slide {
    width: 120px;
    height: 90px;
}

.thumbSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.thumbSwiper img:hover {
    transform: scale(1.05);
}




  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .popular-list > li:not(:last-child) { margin-bottom: 0; }

  .popular-card .card-content { right: 20px; }



  /* .package-list { margin-bottom: 50px; } */

  .package-list > li:not(:last-child) { margin-bottom: 40px; }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner { height: 100%; }

  .package-card .card-content { 
    padding: 40px; 
    min-width: 600px;
}

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper { margin-bottom: 15px; }



.card-title {
  display: block;
  max-width: 100%;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}


/* =========================
STRICT CARD UNIFORMITY FIX
========================= */

#package .package-card {
  height: 100%;
}

/* FIX IMAGE: ALL SAME SIZE */
#package .card-banner {
  height: 240px;          /* force equal image height */
  overflow: hidden;
  border-radius: 10px;
}

#package .card-banner img {
  max-width: 300px;
  height: 100%;
  object-fit: cover;
}

/* FIX TITLE: ALWAYS SAME HEIGHT (1 LINE ONLY) */
#package .card-title {
  font-size: 16px;
  line-height: 1.3;
  /* min-height: 48px;  locks title space */
  font-weight: 900;
  
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FIX DESCRIPTION: SAME HEIGHT (2 LINES MAX) */
#package .card-text {
  font-size: 14px;
  line-height: 1.4;
  min-height: 42px; /* locks spacing */

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FIX META AREA HEIGHT */
#package .card-meta-list {
  min-height: 40px;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* FORCE PRICE SECTION ALIGNMENT */
#package .card-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 400px;
}

/* PRICE CONSISTENCY */
#package .price {
    font-weight: bold;
  font-size: 58px;
  font-weight: 600;
}



#gallery .floating-gallery {
  position: relative;
  height: 850px;
}

/* BASE ITEM */
#gallery .float-item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

/* IMAGE */
#gallery .float-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER */
#gallery .float-item:hover {
  transform: scale(1.08) !important;
  z-index: 20;
}

#gallery .float-item {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

#gallery .float-item img {
  transition: transform 0.6s ease;
}





/* =========================
BLOG DETAIL DESIGN
========================= */

.blog-detail-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.blog-hero-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:20px;
}

.blog-meta{
    font-size:14px;
    color:#777;
    display:flex;
    gap:8px;
    margin-bottom:10px;
}

.blog-title{
    font-size:32px;
    margin-bottom:20px;
    font-weight:700;
    line-height:1.3;
}

.blog-content-body{
    font-size:16px;
    line-height:1.8;
    color:#333;
}

/* RELATED */
.related-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.related-card:hover{
    transform:translateY(-5px);
}

.related-img img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.related-body{
    padding:15px;
}

.related-body h5{
    font-size:16px;
    margin-top:5px;
}






.hero-carousel{
    position:relative;
    width:100%;
    height:700px;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity .7s ease;
}

/* DARK OVERLAY DIRECTLY ON SLIDE */
.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:1;
}

.hero-slide.active{
    opacity:1;
    z-index:1;
}

/* CONTENT ABOVE OVERLAY */
.hero-content{
    position:relative;
    z-index:3;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
    padding-top: 150px;
}

.hero-title{
    color:#fff;
    line-height:1.1;
    font-family: "Cinzel", serif;
    font-size: 4.5em;
    font-weight:600;
    margin-bottom:20px;
}

/* LAST WORD STYLE */
.hero-accent{
    display:inline-block;
    margin-left: -88px;
    font-family: "rockybilly";
    font-style:italic;
    font-weight:600;
    color: #ffc600;
    text-transform: capitalize;
    font-size: 1.2em;
    letter-spacing: -2px;
    margin-top: 50px;
}

/* PARAGRAPH */
.hero-texts{
    max-width:850px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
    padding-top: 30px;
}

/* ARROWS */
.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:transparent;
    /* backdrop-filter:blur(6px); */

    color:transparent;
    font-size:24px;
    cursor:pointer;

    transition:.3s;
}

.hero-arrow:hover{
    background:transparent;
    color: transparent;
}

.hero-arrow.prev{
    left:25px;
}

.hero-arrow.next{
    right:25px;
}

/* DOTS */
.hero-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;

    display:flex;
    gap:12px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#fff;
    transform:scale(1.2);
}

/* MOBILE */
@media(max-width:768px){

    .hero-carousel{
        height:85vh;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-texts{
        font-size:15px;
        line-height:1.6;
    }

    .hero-arrow{
        width:45px;
        height:45px;
        font-size:20px;
    }
}


@media (max-width: 768px) {
    .tour-tabs .nav-link {
        font-size: 14px;
        padding: 10px 6px;
    }
}