

@import url('https://fonts.googleapis.com/css2?family=Kristi&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

 :root{
      --bg:#f6f7fb;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#6b7280;
      --line:#e5e7eb;
      --yellow:#ffc600;
      --green:#38b679;
      --shadow: 0 18px 50px rgba(2, 6, 23, 0.10);
      --shadow2: 0 10px 30px rgba(2, 6, 23, 0.10);
      --radius: 16px;
    }


h1,h2,h3,h4{
        font-family: 'Playfair Display', serif;
}
p {
    font-size: 16px !important;
}

    /* Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif !important;
      background-color: #f4f4f4;
      color: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    :root {
      --yellow: #ffc600;
      --dark: #111111;
      --light-gray: #f4f4f4;
      --subtext: rgba(255, 255, 255, 0.85);
    }

    .page-wrapper {
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    /* Hide slider radios */
    .slider-radio {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    /* Top Bar */
    .top-bar {
      background-color: #000;
      color: #fff;
      font-size: 12px;
      padding: 8px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 40;
      position: relative;
    }

    .top-left,
    .top-center,
    .top-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .top-left span {
      letter-spacing: 1px;
      font-weight: 500;
    }

    .social-icons span {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.6);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      margin-left: 5px;
    }

    .phone-icon {
      font-size: 12px;
      margin-right: 5px;
    }

  .top-right a {
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
}a {
    text-decoration: none !important;
}

    /* Header / Navigation */
    
    
/*    header {*/
/*      position: absolute;*/
/*      top: 32px;*/
/*      left: 0;*/
/*      width: 100%;*/
/*      z-index: 9999999999;*/
/*      pointer-events: none; */
/*      background: #ffffffc4;*/
/*    }.leftmenu {*/
/*    display: flex;*/
/*    gap: 20px;*/
/*}*/

/*    .nav-container {*/
/*          padding: 10px 40px;*/
/*      display: flex;*/
/*      align-items: center;*/
/*      justify-content: space-between;*/
/*      pointer-events: auto;*/
/*    }*/

/*    .logo-area {*/
/*      display: flex;*/
/*      align-items: center;*/
/*      gap: 10px;*/
/*    }*/
    
/*    .logo-box img {*/
/*    width: 250px;*/
/*}*/

/*    .logo-text {*/
/*      color: #fff;*/
/*      font-size: 24px;*/
/*    }*/

/*    .main-nav {*/
/*      display: flex;*/
/*      align-items: center;*/
/*      gap: 30px;*/
/*      font-size: 13px;*/
/*      letter-spacing: 1px;*/
/*      text-transform: uppercase;*/
/*      color: #fff;*/
/*    }*/

/*    .main-nav ul {*/
/*      display: flex;*/
/*      gap: 22px;*/
/*      margin: 0px;*/
/*    }*/

/*    .main-nav ul li a {*/
/*      position: relative;*/
/*      font-weight: 500;*/
/*          color: black;*/
/*          text-decoration: none;*/
/*    }*/

/*    .main-nav ul li a::after {*/
/*      content: "";*/
/*      position: absolute;*/
/*      left: 0;*/
/*      bottom: -4px;*/
/*      width: 0;*/
/*      height: 2px;*/
/*      background-color: var(--yellow);*/
/*      transition: width 0.2s ease-out;*/
/*    }*/

/*    .main-nav ul li a:hover::after {*/
/*      width: 100%;*/
/*    }*/

/*    .nav-icons {*/
/*      display: flex;*/
/*      align-items: center;*/
/*      gap: 18px;*/
/*      font-size: 14px;*/
/*    }.cart img, .search-icon-nav img {*/
/*    width: 35px;*/
/*    height: 35px;*/
/*}*/


/* ===== HEADER BASE ===== */
.site-header{
  position: sticky;       /* keeps menu top */
  top: 0;
  z-index: 9999999999;          /* IMPORTANT: above slider/hero */
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.nav-container {
    max-width: 1445px;
    margin: 0 auto;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo-box img{
  height: 56px;
  width: auto;
  display:block;
}

/* ===== NAV LAYOUT ===== */
.main-nav{
  display:flex;
  align-items:center;
  gap: 18px;
}



.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 18px;
  margin:0;
  padding:0;
}

.nav-links li{
  position: relative;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-size:13px;
  font-weight:600;
  padding: 10px 8px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav-links a:hover{
  color:#ffc600;
}

.caret{ font-size: 12px; opacity: .7; }

/* Icons */
.nav-icons{
  display:flex;
  align-items:center;
  gap: 12px;
}

.nav-icons img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ===== MEGA MENU (Desktop) ===== */
.has-mega .mega-menu{
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  top: calc(100% + 10px);
  /*width: min(1100px, 92vw);*/
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
  z-index: 999999;
  width: max-content;
      top: 92%;
}

/* show on hover desktop */
@media (min-width: 992px){
  .has-mega:hover .mega-menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.mega-wrap{
  display:grid;
  grid-template-columns: 210px 1fr 1fr;
  gap: 18px;
}

.mega-left{
  background: #f4f6f8;
  border-radius: 12px;
  padding: 18px;
}

.mega-left h4{
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: .3px;
}

.mega-left p{
  margin: 0;
  font-size: 13px !important;
  line-height: 1.55;
  color:#444;
}

.mega-btn{
  display:inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  background: #ffc600;
  color:#fff !important;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.mega-right{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 8px 8px 8px 0;
}

.mega-col a{
  display:block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color:#222;
}

.mega-col a:hover{
  background: #fff2f2;
  color:#ffc600;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-icon{
  display:none;
  background: transparent;
  border:0;
  padding:0;
  cursor:pointer;
}

.mobile-menu-icon span{
  display:block;
  width:26px;
  height:2px;
  background:#111;
  margin:2px 0;
  border-radius:10px;
}button#hamburger {
    flex-direction: column;
    gap: 2px;
}

/* overlay */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}
.nav-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* Mobile nav panel */
@media (max-width: 991px){
  .mobile-menu-icon{ display:block; }

  .main-nav{
    flex: 1;
    justify-content:flex-end;
  }

  .nav-links{
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items:flex-start;
    padding: 80px 18px 18px;
    gap: 6px;
    z-index: 9998;
    transition: right .25s ease;
    overflow-y: auto;
  }

  .nav-links.open{ right: 0; }

  .nav-links li{ width: 100%; }
  .nav-links a{
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px;
  }
  .nav-links a:hover{
    background: #f4f6f8;
  }

  /* Mega menu becomes inline accordion */
  .has-mega .mega-menu{
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    padding: 10px 0 0;
    display: none; /* accordion closed by default */
  }

  .has-mega.active .mega-menu{ display: block; }

  .mega-wrap{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mega-right{
    grid-template-columns: 1fr;
    padding: 0;
  }
}



    /* Hero Slider Container */
    .hero-slider {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
    }.slider-content {
    position: absolute;
    top: 60%;
    width: 90%;
    z-index: 9999;
    text-align: center;
    margin: auto;
    left: 5%;
}

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      display: flex;
      flex-direction: column;
      color: #fff;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.6s ease;
    }

    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.4), rgba(0,0,0,0.55));
      z-index: 1;
    }

    /* slide backgrounds */
    /*.slide-1 {*/
    /*  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");*/
    /*}*/


    /* Show slide based on radio */
    #slide-1:checked ~ .hero-slider .slide-1,
    #slide-2:checked ~ .hero-slider .slide-2,
    #slide-3:checked ~ .hero-slider .slide-3 {
      opacity: 1;
      pointer-events: auto;
    }

    /* Hero Content */
    .hero-content-wrapper {
      position: relative;
    }.top-container {
    width: 100%;
    height: 100%;
}.top-container img {
    width: 100%;
    height: 100%;
}

.hero-tagline {
    color: var(--yellow);
    font-size: 50px;
    margin-bottom: 10px;
    font-family: Kristi;
}.hero-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.hero-tagline img {
    width: 70px;
}

    .hero-title {
      font-size: 70px;
      line-height: 1.05;
      margin-bottom: 18px;
    }

    .hero-subtext {
      font-size: 20px;
      color: var(--subtext);
      max-width: 780px;
      margin: 0 auto;
    }

    /* Slider Arrows as labels */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      z-index: 2;
      background-color: rgba(0,0,0,0.2);
      transition: background-color 0.2s ease-out;
      color: #fff;
    }

    .slider-arrow:hover {
      background-color: rgba(0,0,0,0.4);
    }

    .slider-arrow.left {
      left: 50px;
    }

    .slider-arrow.right {
      right: 50px;
    }

    /* Search Bar */
    .search-bar-wrapper {
      position: relative;
      z-index: 5;
      display: flex;
      justify-content: center;
          margin-top: 40px;
    }

    .search-bar {
      background-color: #fff;
      color: #333;
      border-radius: 4px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.25);
      max-width: 960px;
      width: 100%;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }

    .search-item {
      flex: 1;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-right: 1px solid #eee;
      font-size: 13px;
    }

    .search-item:last-child {
      border-right: none;
    }

    .search-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #777;
    }

    .search-label {
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #444;
      font-size: 12px;
    }

    .search-meta {
      font-size: 11px;
      color: #888;
    }

    .search-text-group {
      display: flex;
      flex-direction: column;
    }

    .dropdown-arrow {
      margin-left: auto;
      border: 5px solid transparent;
      border-top-color: #bbb;
    }

    .search-btn {
      background-color: var(--yellow);
      color: #000;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      width: 100%;
      height: 100%;
      font-size: 13px;
      transition: filter 0.2s ease-out, background-color 0.2s ease-out;
    }

    .search-btn:hover {
      filter: brightness(1.05);
      background-color: #ffd93d;
    }

    /* Body Below Hero */

    .placeholder-content {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px 80px;
      color: #333;
    }

    .placeholder-content h2 {
      color: #222;
      margin-bottom: 12px;
    }

    .placeholder-content p {
      font-size: 14px;
      line-height: 1.7;
      color: #666;
    }.hero-content {
    position: absolute;
    top: 20%;
    width: 86%;
    left: 7%;
    text-align: center;
    z-index: 9999999;
}h2 {
    font-size: 45px !important;
}

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .nav-container {
        padding: 14px 20px 0;
      }

      .slider-arrow.left {
        left: 20px;
      }

      .slider-arrow.right {
        right: 20px;
      }

      .hero-title {
        font-size: 46px;
      }

      .hero-tagline {
        font-size: 26px;
      }
    }

    @media (max-width: 900px) {

      .search-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid #eee;
      }

      .search-item:nth-child(3) {
        border-bottom: none;
      }

      .search-item:nth-child(4) {
        flex: 1 1 100%;
      }
    }

    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 8px 16px;
      }

      header {
        top: 54px;
      }

      .nav-container {
        padding: 10px 16px 0;
      }

      .main-nav ul {
        display: none;
      }

      .mobile-menu-icon {
        display: block;
      }

      .nav-icons {
        gap: 10px;
      }

      .hero-title {
        font-size: 38px;
      }

      .hero-content-wrapper {
        padding-top: 40px;
      }

      .hero-subtext {
        font-size: 14px;
      }

      .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
      }

      .search-bar-wrapper {
        padding: 0 12px 40px;
      }

    }

    @media (max-width: 480px) {
      .top-left span {
        font-size: 11px;
      }

      .hero-title {
        font-size: 30px;
      }

      .hero-tagline {
        font-size: 22px;
      }

      .search-bar {
        flex-direction: column;
      }

      .search-item {
        flex: 1 1 100%;
        border-bottom: 1px solid #eee;
      }

      .search-item:last-child {
        border-bottom: none;
      }

      .phone-icon {
        display: none;
      }

      .top-center {
        font-size: 11px;
      }.search-btn {
    padding: 10px;
}
    }
    
    
.video-feature-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
  }.spacing {
    padding: 70px 0px;
        max-width: 1350px;
    margin: auto;
}

  .video-feature-media {
    position: relative;
    overflow: hidden;
  }.bgimg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

  .video-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .video-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.05));
  }

  .video-feature-content-left {
    position: absolute;
    left: 40px;
    bottom: 110px;
    color: #ffffff;
    z-index: 2;
  }

  .video-feature-label {
    color: #ffc600;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .video-feature-title-left {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .video-feature-subleft {
    font-size: 14px;
    opacity: 0.9;
  }

  .video-feature-play {
    position: absolute;
    left: 40px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffc600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
  }

  .video-feature-play::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #000000;
    margin-left: 4px;
  }

  .video-feature-text-right {
    align-self: center;
  }

  .video-feature-title-right {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #222222;
  }

  .video-feature-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 28px;
  }

.video-feature-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffc600;
    color: #000000;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: filter 0.2s 
ease;
}

  .video-feature-btn:hover {
    filter: brightness(1.05);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .video-feature-section {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .video-feature-content-left {
      left: 24px;
      bottom: 110px;
    }

    .video-feature-play {
      left: 24px;
      bottom: 26px;
    }

    .video-feature-title-right {
      font-size: 30px;
    }
  }

  @media (max-width: 600px) {

    .video-feature-title-left {
      font-size: 26px;
    }

    .video-feature-title-right {
      font-size: 26px;
    }.hero-slider {
    position: relative;
    min-height: 90vh;
}.slider-content {
    top: 50%;
}.top-container img {
    object-fit: cover;
}.top-container {
    height: 90vh;
    object-fit: cover;
}    .spacing {
        padding: 40px 20px;
    }
  }
  
  /* ==== TOUR SWIPER SECTION ==== */
  .tour-swiper-wrapper {
    max-width: 1180px;
    margin: 70px auto;
    padding: 0 20px;
  }

  .tour-swiper {
    width: 100%;
  }

  .tour-swiper .swiper-slide {
    height: 250px;
        border-radius: 20px;
  }

  .tour-card {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    display: block;
    color: #fff;
    background-color: #000;
    text-decoration: none;
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .tour-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
  }

  .tour-card:hover img {
    transform: scale(1.05);
  }

  .tour-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05) 20%,
      rgba(0, 0, 0, 0.85) 100%
    );
    pointer-events: none;
  }

  .tour-badge {
    position: absolute;
    left: 26px;
    top: 24px;
    color: #ffc600;
    font-size: 18px;
    z-index: 2;
  }

  .tour-info {
    position: absolute;
    left: 26px;
    bottom: 28px;
    z-index: 2;
  }

  .tour-title {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .tour-price {
    font-size: 16px;
  }

  /* Swiper arrows & pagination */
  .tour-swiper .swiper-button-next,
  .tour-swiper .swiper-button-prev {
    color: #000;
  }

  .tour-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
  }

  .tour-swiper .swiper-pagination-bullet-active {
    background: #ffc600;
  }
.swiper-pagination {
    position: relative !important;
    margin-top: 30px !important;
}
  @media (max-width: 767px) {
    .tour-swiper-wrapper {
      margin: 50px auto;
    }
    .tour-swiper .swiper-slide {
      height: 360px;
    }
    .tour-title {
      font-size: 22px;
    }
  } 
  
/* MAIN LAYOUT */
.reviews-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%;
    min-height: 480px;
}

/* LEFT IMAGE */
.reviews-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT PANEL */
.reviews-right {
    padding: 70px 60px;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.reviews-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/h1-img-3.jpg");
    background-size: cover;
    background-position: center;
}

/* CONTENT */
.reviews-heading {
    font-size: 32px;
    margin-bottom: 5px;
    text-align: center;
    position: relative;
}

.reviews-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.reviews-stars {
    color: #ffc600;
    margin-bottom: 20px;
}

.reviews-text {
    font-size: 14px;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 20px;
}

.reviews-author {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Avatar */
.reviews-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffc600;
}

.reviews-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SWIPER STYLES */
.reviews-swiper .swiper-pagination-bullet {
    background: #666;
    opacity: 1;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #ffc600;
}

.reviews-swiper {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .reviews-section {
        grid-template-columns: 1fr;
    }
    .reviews-right {
        padding: 45px 24px;
    }
    .reviews-heading {
        font-size: 26px;
    }
}

  .exotic-section {
    padding: 40px 0 90px;
    background-color: #fafafa;
    background-image: url("https://wanderers.qodeinteractive.com/wp-content/uploads/2018/02/pattern-bg-1.png");
    background-size: cover;
    background-repeat: no-repeat;
  }

  .exotic-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .exotic-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
    color: #222;
  }

  .exotic-subtitle {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
  }

  .exotic-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 30px;
  }

  /* Left Column */
  .exotic-col-left {
    display: grid;
    grid-template-rows: 2fr 1.3fr;
    gap: 28px;
  }

  .exotic-left-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Cards */
  .exotic-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
  }

  .exotic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .exotic-card:hover img {
    transform: scale(1.04);
  }

  .exotic-label {
    position: absolute;
    left: 22px;
    bottom: 56px;
    color: #ffc600;
    font-size: 18px;
    z-index: 2;
  }

  .exotic-location {
    position: absolute;
    left: 22px;
    bottom: 26px;
    color: #fff;
    font-size: 22px;
    z-index: 2;
  }

  .exotic-location small {
    display: block;
    font-size: 13px;
    opacity: 0.9;
  }

  /* ---------- RIGHT TALL CORPORATE PANEL ---------- */
  .corporate-card {
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  .corporate-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Dark Half Overlay Panel */
  .corporate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.0) 100%
    );
  }

  /* Text Panel Bottom Left */
  .corporate-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    color: #fff;
  }

  .corporate-text h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .corporate-text p {
    font-size: 14px;
    opacity: 0.9;
  }.exotic-col-right {
    overflow: hidden;
}  .exotic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.0) 35%,
      rgba(0,0,0,0.85) 100%
    );
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }

  @media (max-width: 992px) {
    .exotic-grid { grid-template-columns: 1fr; }
    .corporate-card { height: 420px; }
  }
  
.reviews-right .hero-tagline {
    position: relative;
}

/* SECTION */
.tour-grid-section {
  padding: 70px 0;
  background: #fafafa url("https://wanderers.qodeinteractive.com/wp-content/uploads/2018/02/pattern-bg-1.png");
  background-size: cover;
}

/* GRID */
.tour-grid {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.tour-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tour-card:hover img {
  transform: scale(1.06);
}

/* TEXT ALWAYS VISIBLE (Title & Price) */
.tour-info {
  position: absolute;
  left: 20px;
  bottom: 22px;
  z-index: 3;
  color: #fff;
}

.tour-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 3px;
}

.tour-price {
  font-size: 15px;
}

/* HOVER PARAGRAPH (hidden by default) */
.tour-hover-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 80px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.tour-card:hover .tour-hover-text {
  opacity: 1;
  transform: translateY(0);
}

/* BLACK HOVER SHADE */
.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 0.9;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.tour-card:hover::before {
  opacity: 1;
}.tour-card {
    height: 450px;
    object-fit: cover;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}
.choose-tour-section {
    position: relative;
    padding: 90px 0 110px;
    color: #ffffff;
    text-align: center;
    background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .choose-tour-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .choose-tour-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .choose-tour-title {
    font-size: 38px;
    margin-bottom: 14px;
  }

  .choose-tour-subtitle {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
  }

  .choose-tour-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .tour-type {
    flex: 1;
    min-width: 130px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .tour-type:hover {
    transform: translateY(-5px);
    opacity: 1;
  }

  .tour-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tour-icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    stroke-width: 2.3;
    fill: none;
  }

  .tour-label {
    font-size: 16px;
    font-weight: 600;
  }

  @media (max-width: 900px) {
    .choose-tour-section {
      padding: 70px 0 80px;
    }
    .choose-tour-grid {
      justify-content: center;
    }
  }

  @media (max-width: 600px) {
    .choose-tour-title {
      font-size: 28px;
    }
    .tour-type {
      min-width: 45%;
    }
  }
 /* Section spacing */
#blog-section {
    padding: 70px 0;
    background: #ffffff;
    text-align: center;
}

/* Container */
.blog-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Heading */
#blog-title {
    font-size: 40px;
    margin-bottom: 10px;
}

#blog-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Blog Item */
.blog-item {
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-6px);
}

/* Blog Image */
.blog-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
}

/* Blog Heading */
.blog-heading {
    font-size: 20px;
    margin-top: 15px;
    line-height: 1.4;
        color: black;
}

/* Responsive */
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    #blog-title {
        font-size: 32px;
    }
}
#main-footer {
    background: #111;
    color: #ccc;
    font-size: 15px;
}

/* Logo */
.logo-box {
    color: #000;
    display: inline-block;
}

.logo-text {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    margin-left: 5px;
}

/* Contact Icons */
.footer-contact i {
    color: #ffc600;
    margin-right: 8px;
}

/* Section Headers */
.footer-heading {
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Latest Posts */
.footer-post-title {
    color: #fff;
    margin-bottom: 2px;
}

.footer-date {
    font-size: 13px;
    color: #888;
}

/* Social Icons */
.footer-social-icons i {
    font-size: 18px;
    margin-right: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social-icons i:hover {
    color: #ffc600;
}

/* Divider */
.footer-line {
    border-color: #333;
}

/* Bottom Text */
.footer-copy {
    color: #bbb;
    font-size: 14px;
}.footer-logo img {
    width: 280px;
}.footer-copy a {
    color: #ffffff80;
}
/* ================== SHORTS TRUST SECTION ================== */


/* Heading + intro */
#shorts-heading {
  font-size: 36px;
  margin-bottom: 6px;
}

#shorts-subtext {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Swiper wrapper */
#shorts-swiper {
  padding: 10px 0 30px;
}

/* Card styles */
.shorts-card {
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 520px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

/* Top "Shorts" label */
.shorts-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  margin: 10px 0 6px 12px;
}
.shorts-badge img {
    width: 30px;
    margin-right:10px;
}

/* Thumbnail */
.shorts-thumb-wrapper {
  position: relative;
  margin: 6px 12px 12px;
  border-radius: 20px;
  overflow: hidden;
  height: 62%;
}

.shorts-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shorts-play span::before {
  content: "";
  border-left: 12px solid #000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 2px;
}

/* Logo / URL at bottom of card */
.shorts-domain {
  margin-top: auto;
  padding-bottom: 16px;
  font-size: 12px;
  opacity: 0.9;
}

/* Bottom caption (white card) */
.shorts-caption {
  margin-top: 12px;
  background: #ffffff;
  border-radius: 0 0 18px 18px;
  padding: 12px 14px 16px;
  text-align: left;
  font-size: 14px;
  color: #333;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Customer name bold */
.shorts-caption span {
  font-weight: 600;
}

/* Swiper arrows */
#shorts-swiper .swiper-button-next,
#shorts-swiper .swiper-button-prev {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  color: #000;
}

#shorts-swiper .swiper-button-next::after,
#shorts-swiper .swiper-button-prev::after {
  font-size: 16px;
}

/* Pagination dots */
#shorts-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
#shorts-swiper .swiper-pagination-bullet-active {
  background: #ff6b4a;
}

/* Responsive */
@media (max-width: 900px) {
  #shorts-heading {
    font-size: 30px;
  }
  .shorts-card {
    height: 480px;
  }
}
#faq-section {
  padding: 70px 0 80px;
  background: #f9fafc;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

#faq-title {
  font-size: 34px;
  margin-bottom: 10px;
}

#faq-subtitle {
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* FAQ items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e3e6ee;
  overflow: hidden;
}

.faq-item[open] {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.faq-question {
  cursor: pointer;
  padding: 16px 20px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

/* Remove default triangle */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Custom arrow */
.faq-question::after {
  content: "➕";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Arrow when open */
.faq-item[open] .faq-question::after {
  content: "➖";
  color: #f97316;
}

/* Answer area */
.faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid #eef0f6;
}

/* Hover state */
.faq-question:hover {
  background: #f3f4ff;
}

/* Responsive */
@media (max-width: 600px) {
  #faq-title {
    font-size: 28px;
  }
  .faq-question {
    font-size: 15px;
  }
}
/* ===== GOVERNMENT RECOGNITION STYLES ===== */

#gov-recognition-section {
  padding: 70px 0;
  background: #f8fafc;
}

.gov-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading + text */
.gov-text-block {
  text-align: center;
  margin-bottom: 30px;
}

#gov-heading {
  font-size: 32px;
  margin-bottom: 10px;
}

#gov-description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

/* Marquee wrapper */
.gov-marquee-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 20px 0;
}

/* Moving track */
.gov-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: gov-marquee 22s linear infinite;
}

/* Logo item */
.gov-logo {
  flex: 0 0 auto;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*filter: grayscale(100%);*/
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.gov-logo img {
  max-height: 80px;
  width: auto;
}

.gov-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
}

/* Marquee animation */
@keyframes gov-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #gov-heading {
    font-size: 26px;
  }
  .gov-marquee-wrapper {
    padding: 16px 0;
  }
  .gov-logo {
    padding: 6px 18px;
    gap: 20px;
  }
  .tour-grid{
      padding:0px;
  }
}


    .mainsec a{color:inherit;text-decoration:none}
    button, input, select{font:inherit}
    .page-wrap{padding:34px 0 70px}
    .container{max-width:1350px;margin:0 auto;padding:0 18px}

    /* ===================== PAGE HEADER ===================== */
    .crumbs{
      color:var(--muted);
      font-size:13px;
      margin:0 0 10px;
    }
    .page-title{
      font-size:34px;
      line-height:1.15;
      margin:0 0 8px;
      letter-spacing:-0.02em;
    }
    .page-desc{
      margin:0 0 18px;
      color:var(--muted);
      max-width:820px;
      line-height:1.7;
      font-size:14px;
    }
    .divider{height:1px;background:var(--line);margin:18px 0 22px}

    /* ===================== LAYOUT ===================== */
    .layout{
      display:grid;
      grid-template-columns: 320px 1fr;
      gap:22px;
      align-items:start;
    }

    /* ===================== FILTER ===================== */
    #filter-panel{
      background:var(--card);
      border:1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      overflow:hidden;
      position: sticky;
      top: 16px;
    }

    .filter-head{
      background: linear-gradient(135deg, var(--yellow), #ffe070);
      padding:16px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .filter-head .title{
      display:flex;align-items:center;gap:10px;
      font-weight:900;
      color:#111;
      letter-spacing:0.2px;
    }
    .filter-head svg{width:18px;height:18px}

    .filter-body{padding:14px 14px 16px}

    .filter-block{
      border:1px solid var(--line);
      border-radius: 14px;
      padding:12px 12px;
      margin-bottom:12px;
      background:#fff;
    }
    .filter-block:last-child{margin-bottom:0}

    .filter-block h4{
      margin:0 0 10px;
      font-size:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .filter-note{font-size:12px;color:var(--muted)}
    .chips{display:flex;flex-wrap:wrap;gap:8px}

    .chip{
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 10px;
      font-size:13px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      cursor:pointer;
      user-select:none;
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
      background:#fff;
    }
    .chip input{display:none}
    .chip:has(input:checked){
      border-color: rgba(56,182,121,0.55);
      background: rgba(56,182,121,0.10);
    }
    .chip:hover{transform:translateY(-1px)}

    .range-row{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:8px;
    }
    .field{
      display:flex;flex-direction:column;gap:6px;
    }
    .field label{font-size:12px;color:var(--muted)}
    .field input{
      border:1px solid var(--line);
      border-radius:12px;
      padding:10px 10px;
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease;
      background:#fff;
    }
    .field input:focus{
      border-color: rgba(56,182,121,0.6);
      box-shadow: 0 0 0 4px rgba(56,182,121,0.12);
    }

    .filter-actions{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .btn{
      border:none;
      border-radius: 14px;
      padding:11px 12px;
      font-weight:900;
      cursor:pointer;
      transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
    }
    .btn:active{transform:translateY(1px)}
    .btn-apply{
      background: var(--green);
      color:#fff;
      box-shadow: 0 12px 22px rgba(56,182,121,0.25);
    }
    .btn-apply:hover{filter:brightness(0.98)}
    .btn-reset{
      background:#fff;
      border:1px solid var(--line);
      color:#111;
    }
    .btn-reset:hover{filter:brightness(0.98)}

    /* ===================== LIST HEADER ===================== */
    .list-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .list-head .left{
      display:flex;
      flex-direction:column;
      gap:4px;
    }
    .list-head .left strong{font-size:14px}
    #resultCount{font-size:12px;color:var(--muted)}
    .sort-row{
      display:flex;align-items:center;gap:10px;
    }
    .sort-row select{
      border:1px solid var(--line);
      border-radius: 12px;
      padding:10px 12px;
      background:#fff;
      outline:none;
    }
    .sort-row select:focus{
      border-color: rgba(56,182,121,0.6);
      box-shadow: 0 0 0 4px rgba(56,182,121,0.12);
    }

    /* ===================== CARDS GRID ===================== */
    .grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:18px;
    }

    .tour-card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius: 18px;
      overflow:hidden;
      box-shadow: var(--shadow2);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .tour-card:hover{
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }article.tour-card::before {
    background: transparent;
}

    .thumb{
      position:relative;
      height:190px;
      overflow:hidden;
      background:#0b1220;
    }
    .thumb img{
      width:100%;height:100%;
      object-fit:cover;
      transform: scale(1.02);
      transition: transform .35s ease;
      display:block;
    }
    .tour-card:hover .thumb img{transform: scale(1.08)}

    .badge{
      position:absolute;
      left:12px;
      top:12px;
      background: rgba(255,198,0,0.92);
      color:#111;
      font-size:12px;
      font-weight:900;
      padding:7px 10px;
      border-radius:999px;
      box-shadow: 0 10px 18px rgba(0,0,0,0.12);
    }

    .card-body{padding:14px 14px 15px}
    .meta{
      display:flex;align-items:center;justify-content:space-between;gap:10px;
      margin-bottom:8px;
    }
    .category{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#0b1220;
      font-weight:900;
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:0.08em;
    }
    .category-dot{
      width:10px;height:10px;border-radius:999px;background: var(--green);
      box-shadow: 0 0 0 4px rgba(56,182,121,0.12);
    }

    .pkg-name{
      font-size:18px;
      line-height:1.25;
      margin:0 0 10px;
      letter-spacing:-0.01em;
          color: black;
    }

    .price-row{
      display:flex;align-items:flex-end;justify-content:space-between;gap:10px;
      margin-bottom:12px;
    }
    .price{
      font-size:22px;
      font-weight:900;
      color:#0b1220;
    }
    .price small{
      font-size:12px;
      color:var(--muted);
      font-weight:800;
      margin-left:6px;
    }

    .includes{
      border-top:1px dashed var(--line);
      padding-top:12px;
      margin-top:2px;
    }
    .includes-title{
      font-size:12px;
      font-weight:900;
      letter-spacing:0.08em;
      text-transform:uppercase;
      color:var(--muted);
      margin:0 0 10px;
    }
    .include-items{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(56,182,121,0.10);
      border:1px solid rgba(56,182,121,0.18);
      color:#0b1220;
      font-weight:800;
    }
    .tag.alt{
      background: rgba(255,198,0,0.18);
      border:1px solid rgba(255,198,0,0.35);
    }

    .card-actions{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:14px;
    }
    .btn-outline{
      display:inline-flex;align-items:center;justify-content:center;
      background:#fff;
      border:1px solid rgba(56,182,121,0.45);
      color:#0b1220;
      font-weight:900;
      border-radius: 14px;
      padding:11px 12px;
      cursor:pointer;
      transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .btn-outline:hover{
      background: rgba(56,182,121,0.08);
      box-shadow: 0 12px 24px rgba(56,182,121,0.14);
    }
    .btn-solid{
      display:inline-flex;align-items:center;justify-content:center;
      background: linear-gradient(135deg, var(--green), #48d08e);
      color:#fff;
      border:none;
      font-weight:900;
      border-radius: 14px;
      padding:11px 12px;
      cursor:pointer;
      box-shadow: 0 12px 24px rgba(56,182,121,0.22);
      transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
    }
    .btn-solid:hover{filter:brightness(0.98)}
    .btn-solid:active,.btn-outline:active{transform:translateY(1px)}

    /* ===================== MODAL (POPUP) ===================== */
    #bookModal{
      position:fixed;
      inset:0;
      background: rgba(15, 23, 42, 0.55);
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      z-index:9999;
    }
    #bookModal:target{display:flex;}

    .modal-card{
      width:min(560px, 100%);
      background:#fff;
      border-radius: 18px;
      box-shadow: var(--shadow);
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.2);
    }
    .modal-head{
      padding:16px 16px;
      background: linear-gradient(135deg, rgba(255,198,0,0.95), rgba(56,182,121,0.95));
      color:#0b1220;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .modal-head strong{font-size:16px}
    .modal-close{
      width:38px;height:38px;border-radius:12px;
      background: rgba(255,255,255,0.85);
      display:grid;place-items:center;
      color:#111;
      text-decoration:none;
      font-weight:900;
      box-shadow: 0 10px 20px rgba(0,0,0,0.10);
    }
    .modal-body{padding:16px}
    .modal-note{
      margin:0 0 14px;
      color:var(--muted);
      line-height:1.6;
      font-size:13px;
    }

    .modal-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .modal-grid .field input{
      width:100%;
      padding:11px 12px;
      border-radius: 14px;
    }
    .modal-grid .field.full{grid-column:1 / -1}

    .modal-actions{
      display:flex;
      gap:10px;
      margin-top:14px;
    }
    .modal-actions .btn{
      width:100%;
      border-radius: 14px;
      display:inline-flex;align-items:center;justify-content:center;
      text-decoration:none;
    }
    .btn-cancel{
      background:#fff;
      border:1px solid var(--line);
      color:#111;
      font-weight:900;
    }article.tour-card .card-body {
    padding: 14px;
}.card-actions a.btn-outline {
    color: black;
}.card-actions a {
    font-size: 14px;
    padding: 7px 10px;
    border-radius: 6px;
}div#bookModal .modal-body {
    padding: 20px;
}.modal-actions button.btn.btn-apply {
    background: #ffc600;
}button.btn.btn-apply {
    background: #ffc600;
}button.btn.btn-reset {
    border: 1px solid #0000004d;
}.leftmenu {
    display: flex;
    gap: 20px;
}

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px){
      .grid{grid-template-columns: repeat(2, 1fr);}
    }
    @media (max-width: 900px){
      .layout{grid-template-columns: 1fr;}
      #filter-panel{position:relative;top:auto}
    }
    @media (max-width: 560px){
      .grid{grid-template-columns: 1fr;}
      .page-title{font-size:28px}
      .modal-grid{grid-template-columns:1fr}
    }
    
/* ===== Desktop vs Mobile visibility ===== */
@media (max-width: 991px) {
  /* hide desktop UL menu on mobile */
  .main-nav .nav-links {
    display: none !important;
  }

  /* show hamburger on mobile */
  .mobile-menu-icon {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* hide mobile drawer + overlay on desktop */
  .mobile-drawer,
  .mobile-overlay {
    display: none !important;
  }

  /* keep desktop menu visible */
  .main-nav .nav-links {
    display: flex !important;
  }

  /* optional: hide hamburger on desktop */
  .mobile-menu-icon {
    display: none !important;
  }
}

/* ===== Drawer & overlay ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 9998;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: #fff;
  transform: translateX(110%);
  transition: 0.25s;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 30px rgba(0,0,0,.12);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== Drawer header ===== */
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid #eee;
}

.mobile-logo img {
  height: 38px;
  width: auto;
}

.mobile-close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Links ===== */
.mobile-links {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow: auto;
  flex: 1;
}

.mobile-links li a,
.m-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-links li a:hover {
  background: #fafafa;
}

.mobile-bottom {
  padding: 12px;
  border-top: 1px solid #eee;
  display: grid;
  gap: 10px;
}

.mobile-action {
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  background: #ffc600;
  color: #111;
}

/* ===== Accordion ===== */
.m-accordion .m-acc-btn {
  width: 100%;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.m-acc-panel {
  display: none;
  padding: 8px 12px 12px;
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
}

.m-accordion.active .m-acc-panel {
  display: block;
}

.m-viewall {
  display: block;
  margin: 6px 4px 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
}

.m-title {
  margin: 10px 6px 6px;
  font-size: 12px;
  letter-spacing: .12em;
  color: #666;
  font-weight: 800;
}

.m-cols {
  display: grid;
  gap: 8px;
}

.m-col a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  background: #f7f7f7;
  margin: 6px 0;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.m-acc-icon {
  transition: .2s;
}

.m-accordion.active .m-acc-icon {
  transform: rotate(180deg);
}
