  /*
    font-family: "Figtree", sans-serif;
    font-family: "Afacad", sans-serif; 
    font-family: "Kaushan Script", cursive;
  */

  /* ===============================
   COLOR VARIABLES (LOGO BASED)
================================ */
  :root {
    --gh-navy: #1C2D5A;
    --gh-orange: #FF8A00;
    --gh-orange-dark: #E65A00;
    --gh-sky: #3FA9E2;
    --gh-white: #ffffff;
    --grey: #5f5f5f;
    --darkgrey: #272727;
  }

  body {
    font-family: "Figtree", sans-serif;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Kaushan Script", cursive !important;
  }

  .section-gap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* ===============================
   HEADER
================================ */
  .gh-header {
    height: 100vh;
    background: var(--gh-sky);
  }

  .container-fluid,
  .container {
    position: relative;
    z-index: 2;
  }

  /* ===============================
   NAVBAR
================================ */
  .gh-navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 99%;
    background: var(--gh-white);
    border-radius: 40px;
    padding: 15px 30px;
    z-index: 20;
    max-width: 1440px;
    transition: all 0.3s ease-in-out;
  }

  .gh-logo img {
    height: 60px;
  }

  .gh-nav .nav-link {
    color: var(--gh-navy);
    font-weight: 500;
    margin: 0 8px;
    text-transform: uppercase;
  }

  .gh-nav .nav-link.active {
    color: var(--gh-orange);
  }

  .gh-nav .nav-link:hover {
    color: var(--gh-orange);
  }

  .gh-nav-icons i {
    color: var(--gh-navy);
    margin-left: 12px;
    cursor: pointer;
    font-size: 18px;
  }

  .gh-nav-icons a {
    text-decoration: none;
  }

  /* Fixed header on scroll */
  .gh-navbar.is-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    right: 0;
    max-width: 1024px;
    height: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }



  /* ===============================
   SLIDER
================================ */
  .gh-hero-slider {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .gh-slide {
    background-size: cover;
    background-position: center;
    transform: skewX(-8deg);
    position: relative;
  }

  .gh-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.6)); */
  }

  .banner_content {
    padding: 80px 50px;
    max-width: 820px;
    position: absolute;
    top: 22%;
    left: 13%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 30px;
  }

  .banner_content h5 {
    font-size: 60px;
    line-height: 70px;
    color: var(--gh-navy);
    display: block;
    padding-left: 20px;
  }

  .banner_content h1 {
    font-size: 100px;
    line-height: 1.2;
    color: var(--gh-navy);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
  }

  .banner_content h1 span {
    color: var(--gh-orange);
  }

  /* ===============================
   CLOUD SHAPE
================================ */
  .gh-cloud {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    border-radius: 100% 100% 0 0;
    z-index: 10;
    display: none;
  }

  .gh-cloud img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  /* ===============================
   TOP DESTINATION
================================ */
  .gh-top-destination-wrap {
    padding: 50px;
    margin-top: 0px;
    z-index: 2;
    position: relative;
  }

  .gh-top-destination {
    background: var(--gh-navy);
    border-radius: 30px;
    color: #fff;
    overflow: hidden;
  }

  /* Text */
  .gh-subtitle {
    color: var(--gh-orange);
    font-weight: 600;
    font-size: 2.5rem;
  }

  .gh-desc {
    max-width: 470px;
    color: #cfe9ea;
    font-size: 1.4rem;
  }



  .gh-btn {
    background: var(--gh-orange-dark);
    color: var(--gh-white);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: 0;
  }

  .gh-btn:hover {
    background-color: var(--gh-sky);
    color: var(--gh-white);
  }

  /* Right image */


  /* Title */
  .gh-main-title {
    font-size: 4.5rem;
    font-weight: 800;
  }

  .gh-main-title span {
    color: var(--gh-orange);
    display: block;
  }

  /* Swiper */
  .gh-destination-swiper {
    padding: 30px 0 50px;
  }

  .gh-destination-swiper .swiper-slide {
    width: 260px;
    transition: width 0.45s ease;
  }

  .gh-most-fav-media {
    position: absolute;
    top: 0px;
    right: 0px;
  }

  /* Center card default big */
  /* .gh-destination-swiper .swiper-slide-active {
    width: 420px;
  } */


  /* Hover expand (LEFT + RIGHT) */
  .gh-destination-swiper .swiper-slide:hover {
    width: 420px !important;
    z-index: 5;
  }

  /* Card */
  .gh-card {
    height: 300px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
  }

  .gh-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Info */
  .gh-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
  }

  .gh-info h5 {
    margin: 0;
    font-weight: 400;
    font-size: 2rem;
  }

  .gh-info span {
    font-size: 14px;
  }

  .big_text {
    padding-right: 15%;
  }



  .gh-happy-wrap {
    color: var(--gh-orange-dark);
    font-weight: 500;
  }

  /* wrapper */
  .gh-happy-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* avatar group */
  .gh-happy-wrap .gh-avatars {
    display: flex;
    align-items: center;
  }

  .gh-happy-wrap .gh-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    /* section bg color */
    margin-left: -12px;
  }

  /* first avatar no overlap */
  .gh-happy-wrap .gh-avatars img:first-child {
    margin-left: 0;
  }

  /* count text */
  .gh-happy-wrap .gh-count {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
  }

  /* small text */
  .gh-happy-wrap small {
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.95;
  }

  .gh-destination-next,
  .gh-destination-prev {
    width: 40px;
    height: 40px;
    background-color: var(--gh-orange);
    border-radius: 50%;
    color: var(--gh-white);
  }

  .gh-destination-next::after,
  .gh-destination-prev::after {
    font-size: 22px;
    color: var(--gh-navy);
  }

  .gh-destination-next svg,
  .gh-destination-prev svg {
    width: 13px;
  }

  /* ===============================
   TOUR SECTION
================================ */
  .gh-tour-section {
    background: var(--gh-navy);
    position: relative;
    padding-top: 150px;
  }

  .package_bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }

  .shadow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 110px;
  }

  .gh-tour-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0px 20px rgba(0, 0, 0, .08);
    margin: 20px;
  }

  /* Image area */
  .gh-img {
    position: relative;
    height: 260px;
  }

  .gh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Badge */
  .gh-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gh-sky);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    gap: 6px;
    align-items: center;
  }

  /* Location overlay */
  .gh-location {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.748), transparent);
  }

  /* Body */
  .gh-card-body {
    padding: 22px;
  }

  .gh-price {
    font-size: 26px;
    font-weight: 600;
    color: var(--gh-orange);
  }

  .gh-price small {
    font-size: 14px;
    color: #6b6b6b;
    margin-left: 4px;
  }

  .gh-card-body p {
    font-size: 15px;
    color: var(--gh-navy);
    margin: 14px 0 20px;
	  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  }

  /* Footer */
  .gh-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .gh-book-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid #9fe000;
    color: var(--gh-navy);
    font-weight: 600;
    text-decoration: none;
  }

  .gh-rating span {
    font-size: 13px;
    color: #666;
  }

  .gh-stars {
    color: #ffb703;
    font-size: 14px;
  }

  /* Swiper */
  .gh-tour-swiper .swiper-slide {
    padding: 0px;
  }

  /* Navigation */
  .gh-tour-prev,
  .gh-tour-next {
    width: 50px;
    height: 50px;
    background: #ffb703;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 26px;
  }


  /* body spacing */
  .gh-package-body {
    padding: 22px;
  }

  /* icons row */
  .gh-package-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #000;
  }

  /* title */
  .gh-package-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    font-family: "Afacad", sans-serif;
  }

  /* duration */
  .gh-package-duration {
    font-size: 14px;
    color: #000;
    margin-bottom: 14px;
  }

  .gh-package-duration span {
    font-size: 15px;
    color: var(--darkgrey);
    font-weight: 400;
  }

  /* status */
  .gh-package-status {
    color: red !important;
    font-size: 14px;
    margin-bottom: 16px;
  }

  /* actions wrapper */
  .gh-package-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* base button reset */
  .gh-package-actions .btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    padding: 0 18px;
    transition: all .25s ease;
    white-space: nowrap;
  }

  /* View Details – outline style */
  .gh-package-actions .gh-dark-btn:first-child {
    background: transparent;
    color: var(--gh-navy);
    border: 2px solid var(--gh-navy);
  }

  .gh-package-actions .gh-dark-btn:first-child:hover {
    background: var(--gh-navy);
    color: var(--gh-white);
  }

  /* Enquiry Now – primary CTA */
  .gh-package-actions .gh-dark-btn:last-child {
    background: linear-gradient(135deg,
        var(--gh-orange),
        var(--gh-orange-dark));
    color: var(--gh-white);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 138, 0, .35);
  }

  .gh-package-actions .gh-dark-btn:last-child:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 138, 0, .45);
  }

  /* WhatsApp button */
  .gh-whatsapp-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .4);
  }

  .gh-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
  }





  /* ===============================
   Theme Tour
================================ */
  .gh-tour-category-section {
    padding: 80px 50px;
    background: linear-gradient(to bottom, #f3fbfb, #e2f3f4);
    position: relative;
  }

  .theme-tour-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-attachment: fixed;
  }

  .gh-tour-content {
    padding: 50px;
  }

  .gh-tour-content h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--gh-navy);
  }

  .gh-tour-content p {
    max-width: 420px;
    margin: 16px 0 24px;
    color: var(--darkgrey);
  }


  /* CARD */
  .gh-category-card {
    background: #fff;
    padding: 18px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 0px 20px rgba(0, 0, 0, .08);
    margin: 0px;
  }

  .gh-category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
  }

  .gh-category-card h4 {
    margin-top: 14px;
    font-weight: 700;
    color: var(--gh-navy);
  }

  /* Swiper */
  .gh-tour-category-swiper .swiper-slide {
    opacity: .8;
    transition: .3s;
    transform: scale(0.8);
  }

  .gh-tour-category-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }

  /* Nav */
  .gh-cat-prev,
  .gh-cat-next {
    position: absolute;
    top: 45%;
    width: 44px;
    height: 44px;
    background: var(--gh-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 1;
  }

  .gh-cat-prev {
    left: 0px;
  }

  .gh-cat-next {
    right: 0px;
  }

  /* ===============================
TESTIMONIAL
================================ */
  .gh-benefits-section {
    background: #e3f2f1;
    padding: 80px 0 0 0;
    position: relative;
  }

  .review_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .review_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Heading */
  .gh-benefits-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--gh-navy);
  }

  .gh-benefits-title span {
    color: var(--gh-orange);
  }

  .gh-benefits-sub {
    max-width: 520px;
    margin: 10px auto 30px;
    color: #5f7f82;
  }

  /* Review card */
  .gh-review-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    margin: 25px 15px;
  }

  .gh-review-card small {
    color: #777;
  }

  .gh-stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 10px 0;
  }

  .gh-star {
    color: #7ad000;
    font-size: 16px;
  }

  .gh-star.gray {
    color: #ccc;
  }

  .gh-verified {
    font-size: 12px;
    color: #777;
    margin-left: 8px;
  }

  .gh-review-card h5 {
    font-weight: 700;
    color: var(--gh-navy);
    margin-bottom: 6px;
  }

  /* Swiper */
  .gh-benefits-swiper .swiper-slide {
    width: 260px;
  }

  /* Nav */
  .gh-benefits-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
  }

  .gh-ben-prev,
  .gh-ben-next {
    width: 44px;
    height: 44px;
    background: var(--gh-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
  }

  /* Google rating bar */
  .gh-google-rating {
    margin: 30px auto 0;
    padding: 12px 26px;
    border-radius: 30px;
    border: 2px solid var(--gh-orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background-color: var(--gh-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
  }

  /* ===============================
Mooving Car
================================ */

  .marquee-car {
    position: relative;
    overflow: hidden;
    height: 160px;
    border-bottom: 5px solid var(--darkgrey);
  }

  .marquee-car .trv-animated-car {
    animation: marquee-car 40s linear infinite;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 248px;
    height: 100%;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .marquee-car .trv-animated-car {
      animation: marquee-car 10s linear infinite;
    }
  }

  .trv-animated-car .car-main {
    height: 135px;
    position: absolute;
    left: 0px;
    bottom: 0px;
  }

  .trv-animated-car .tyre-1 {
    position: absolute;
    right: 27px;
    bottom: 0%;
    width: 37px;
  }

  .trv-animated-car .tyre-2 {
    position: absolute;
    left: 32px;
    bottom: 0%;
    width: 37px;
  }

  @keyframes marquee-car {
    0% {
      transform: translateX(-400px);
    }

    100% {
      transform: translateX(100vw);
    }
  }

  .spin-tyres {
    animation-name: spin;
    animation-duration: 2400ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 37px;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }


  /* ===============================
Footer
================================ */
  .gh-footer {
    background: #ffffff;
    position: relative;
    padding-top: 80px;
  }

  .gh-footer-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .gh-footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* brand */
  .gh-footer-brand img {
    max-width: 160px;
    margin-bottom: 15px;
  }

  .gh-footer-brand p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
  }

  .gh-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
  }

  .gh-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gh-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* titles */
  .gh-footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gh-navy);
  }

  /* links */
  .gh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .gh-footer-links li {
    margin-bottom: 10px;
  }

  .gh-footer-links a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
  }

  /* contact */
  .gh-footer-contact .gh-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .gh-footer-contact span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e4eadf;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gh-navy);
    font-size: 18px;
  }

  .gh-footer-contact p {
    margin: 0;
    font-size: 15px;
    color: var(--gh-navy);
    font-weight: 600;
  }

  /* subscribe bar */
  .gh-footer-subscribe {
    background: var(--gh-navy);
    border-radius: 22px;
    padding: 30px 40px;
    margin: 60px auto 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .gh-sub-left h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
  }

  .gh-sub-left h3 span {
    color: var(--gh-orange-dark);
  }

  .gh-sub-left p {
    color: #d4f0f0;
    margin: 0;
  }

  .gh-sub-form {
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    min-width: 420px;
  }

  .gh-sub-form input {
    border: none;
    outline: none;
    flex: 1;
    padding: 14px 18px;
    background-color: transparent;
    outline: 0;
    border: 0;
  }

  .gh-sub-form button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--gh-navy);
    color: #fff;
  }

  /* copyright */
  .gh-footer-copy {
    text-align: center;
    font-size: 14px;
    padding-bottom: 20px;
  }

  .gh-footer-copy span {
    color: var(--gh-orange-dark);
  }

  @media(max-width:768px) {
    .gh-footer-subscribe {
      flex-direction: column;
      text-align: center;
    }

    .gh-sub-form {
      min-width: 100%;
    }
  }



  /* ===============================
ABOUT PAGE
================================ */
  /* HERO WRAP */
  .gh-inner-hero {
    position: relative;
    height: 460px;
    overflow: hidden;
  }

  /* Background image */
  .gh-inner-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    filter: brightness(0.5);
  }

  /* soft overlay */
  .gh-inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(102, 188, 249, 0.63), rgba(2, 16, 55, 0));
  }

  /* Content */
  .gh-inner-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 30px;
  }

  .gh-inner-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--gh-white);
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }


  .gh-inner-hero-content a {
    color: var(--gh-white);
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .gh-inner-hero-content span.active {
    color: var(--gh-orange);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .inr-inr_bnr_cloude_wrap {
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1;
  }

  .inr-banr-cloude {
    animation: cloud 30s linear infinite;
  }

  @keyframes cloud {
    0% {
      transform: translateX(-40vw);
    }

    100% {
      transform: translateX(100vw);
    }
  }

  @media (max-width: 768px) {
    .gh-inner-hero {
      height: 280px;
    }

    .gh-inner-hero-content {
      padding-top: 90px;
    }

    .gh-inner-hero-content h1 {
      font-size: 32px;
    }
  }

  .gh-recommend-section {
    background: var(--gh-white);
    position: relative;
  }

  /* LEFT VISUAL */
  .gh-recommend-visual {
    position: relative;
    min-height: 520px;
  }

  .gh-main-person {
    position: relative;
    z-index: 3;
    max-height: 520px;
  }

  .gh-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(63, 169, 226, .15);
  }

  .gh-circle.big {
    width: 320px;
    height: 320px;
    bottom: 0;
    right: 40px;
    z-index: 1;
  }

  .gh-circle.small {
    width: 190px;
    height: 190px;
    top: 40px;
    right: 140px;
    z-index: 2;
  }

  .gh-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* RIGHT CONTENT */
  .gh-recommend-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--gh-navy);
    margin-bottom: 20px;
  }

  .gh-recommend-content h2 span {
    color: var(--gh-orange);
  }

  .gh-desc-about {
    color: var(--grey);
    margin-bottom: 32px;
    max-width: 520px;
  }

  /* feature cards */
  .gh-feature-card {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid #dbecee;
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .gh-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e9f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gh-sky);
    font-size: 24px;
  }

  .gh-feature-card h5 {
    font-weight: 700;
    color: var(--gh-navy);
    margin-bottom: 6px;
  }

  .gh-feature-card p {
    margin: 0;
    color: var(--grey);
    font-size: 14px;
  }

  /* EXPERIENCE TEXT */
  .gh-experience-text {
    position: absolute;
    left: 0;
    bottom: 0;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100px;
  }

  .gh-experience-text span {
    font-size: 64px;
    font-weight: 900;
    color: var(--gh-orange);
  }

  .gh-experience-text p {
    font-size: 16px;
    color: var(--gh-navy);
    font-weight: 600;
  }

  @media(max-width: 992px) {
    .gh-experience-text {
      display: none;
    }

    .gh-recommend-visual {
      margin-bottom: 60px;
    }

    .gh-recommend-content h2 {
      font-size: 32px;
    }
  }

  .gh-about-soul {
    background: #fff;
  }

  .gh-about-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gh-navy);
  }

  .gh-about-head span {
    color: var(--gh-orange);
  }

  .gh-about-head p {
    max-width: 700px;
    margin: 12px auto 0;
    color: var(--grey);
  }

  /* image */
  .gh-about-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
  }

  .gh-about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }

  .gh-since {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gh-orange);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
  }

  /* content */
  .gh-about-content p {
    color: var(--grey);
    margin-bottom: 20px;
  }

  .gh-about-content h4 {
    font-size: 24px;
    color: var(--gh-navy);
    margin-bottom: 16px;
  }

  .gh-adv-list {
    list-style: none;
    padding: 0;
  }

  .gh-adv-list li {
    margin-bottom: 14px;
    color: var(--darkgrey);
  }

  .gh-adv-list strong {
    color: var(--gh-navy);
  }

  /* destinations */
  .gh-world-destinations h3 {
    text-align: center;
    font-size: 32px;
    color: var(--gh-navy);
    margin-bottom: 24px;
  }

  .gh-destination-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .gh-destination-grid span {
    padding: 10px 18px;
    border-radius: 20px;
    background: #f2f6f7;
    font-size: 14px;
    color: var(--gh-navy);
    font-weight: 600;
  }

  .soul_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .soul_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }

  /* ============================
    Destination Page
   ======================== */
  .gh-dh-section {
    padding: 60px 0;
    background: #f2fcfb;
  }

  /* grid */
  .gh-dh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  /* Large tablets / small desktops */
  @media (max-width: 1200px) {
    .gh-dh-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Tablets */
  @media (max-width: 992px) {
    .gh-dh-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .gh-dh-grid {
      grid-template-columns: 1fr;
    }
  }


  /* card base */
  .gh-dh-card {
    position: relative;
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
  }

  .gh-dh-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* normal bottom strip */
  .gh-dh-location {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    color: var(--gh-white);
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92), #00000008);
    transition: opacity .3s ease;
    font-size: 24px;
  }

  /* hover overlay */
  .gh-dh-hover {
    position: absolute;
    inset: 0;
    background: rgba(11, 95, 99, .9);
    /* project teal */
    color: #fff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: scale(1.05);
    transition: all .35s ease;
  }

  /* hover reveal */
  .gh-dh-card:hover .gh-dh-hover {
    opacity: 1;
    transform: scale(1);
  }

  .gh-dh-card:hover .gh-dh-location {
    opacity: 0;
  }

  /* top */
  .gh-dh-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
  }

  .gh-dh-top strong {
    font-size: 26px;
  }

  /* title */
  .gh-dh-hover h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  /* bottom */
  .gh-dh-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* button */
  .gh-dh-btn {
    background: var(--gh-orange);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
  }

  /* rating */
  .gh-dh-rating {
    font-size: 13px;
    color: #ffb703;
  }

  /* ==========================
  package details
  ========================= */
  .gh-pkg-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
  }

  .gh-pkg-route {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }

  /* main image */
  .gh-pkg-main-swiper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
  }

  /* thumbnails */
  .gh-pkg-thumb-swiper {
    margin-top: 12px;
  }

  .gh-pkg-thumb-swiper img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
  }

  .gh-pkg-thumb-swiper .swiper-slide {
    opacity: 0.8;
  }

  .gh-pkg-thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
  }

  /* overview */
  .gh-pkg-overview {
    margin-top: 30px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
  }

  /* review */
  .gh-pkg-review {
    background: #fafafa;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .gh-review-user {
    display: flex;
    gap: 12px;
    margin-top: 14px;
  }

  .gh-review-user img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
  }

  /* includes */
  .gh-pkg-includes {
    border: 1px solid #eee;
    padding: 18px;
    border-radius: 12px;
  }

  .gh-include-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .gh-include-icons div {
    text-align: center;
    font-size: 18px;
    display: flex;
    gap: 6px;
  }

  .gh-review-head {
    margin-bottom: 15px;
  }

  .gh-review-nav {
    display: flex;
    gap: 10px;
  }

  .gh-review-prev {
    background-color: var(--gh-orange-dark);
    color: var(--gh-white);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 30px;
  }

  .gh-review-next {
    background-color: var(--gh-orange-dark);
    color: var(--gh-white);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 30px;
  }

  .gh-tab-nav {
    display: flex;
    background: linear-gradient(to right, var(--gh-navy), #2b1408);
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 100px;
  }

  .gh-tab-nav a {
    flex: 1;
    padding: 14px;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
  }

  .gh-tab-nav a:active,
  .gh-tab-nav a:focus {
    background: var(--gh-orange-dark);
    color: var(--gh-white);
    font-weight: 600;
  }

  .gh-tab-pane {
    margin-top: 24px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
  }

  .gh-tab-pane h4 {
    margin-bottom: 15px;
    color: var(--gh-orange-dark);
  }


  .gh-summary-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
  }

  .gh-summary-list li {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .gh-itinerary .gh-day {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
  }

  .gh-itinerary .gh-day span {
    min-width: 80px;
    font-weight: 600;
    color: var(--gh-orange);
  }



  .gh-itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .gh-itinerary-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .gh-itinerary-header {
    width: 100%;
    background: #f9f9f9;
    border: none;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
  }

  .gh-itinerary-header span {
    background: var(--gh-orange);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
  }

  .gh-itinerary-header strong {
    flex: 1;
    font-size: 15px;
  }

  .gh-itinerary-header small {
    color: #666;
    margin-right: 8px;
  }

  .gh-itinerary-header i {
    font-size: 16px;
    transition: 0.3s;
  }

  .gh-itinerary-body {
    display: none;
    padding: 18px;
    border-top: 1px solid #eee;
  }

  .gh-itinerary-item.active .gh-itinerary-body {
    display: block;
  }


  .gh-itinerary-body img {
    width: 100%;
    border-radius: 10px;
  }

  .gh-itinerary-body ul {
    padding-left: 18px;
  }

  .gh-itinerary-body li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
  }

  .gh-read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--gh-orange);
    font-weight: 600;
    text-decoration: none;
    background-color: transparent;
    outline: none;
    border: 0;
    font-size: 14px;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gh-orange) 0%, var(--gh-orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .faq-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: var(--darkgrey);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
  }

  .faq-item[open] {
    border-color: var(--gh-sky);
    ;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary:hover {
    background-color: #f8f9ff;
  }

  .faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    padding-right: 20px;
    line-height: 1.5;
  }

  .faq-icon {
    flex-shrink: 0;
    color: var(--gh-navy);
    transition: transform 0.3s ease;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    padding: 0 28px 24px 28px;
    animation: slideDown 0.3s ease;
  }

  .faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile responsive */
  @media (max-width: 768px) {
    .faq-header h2 {
      font-size: 2rem;
    }

    .faq-header p {
      font-size: 1rem;
    }

    .faq-item summary {
      padding: 20px;
    }

    .faq-question {
      font-size: 1rem;
    }

    .faq-answer {
      padding: 0 20px 20px 20px;
    }
  }

  .form-card {
    background: var(--gh-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gh-orange-dark);
  }

  .price-header {
    background: linear-gradient(135deg, var(--gh-orange) 0%, var(--gh-orange-dark) 100%);
    padding: 24px 30px;
    text-align: center;
    color: var(--gh-white);
  }

  .price-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .price-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .price-note {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
  }

  .form-content {
    padding: 40px 30px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .input-wrapper {
    position: relative;
  }

  .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gh-navy);
    font-size: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    color: var(--darkgrey);
    transition: all 0.3s ease;
    background: var(--gh-white);
    font-family: inherit;
  }

  .form-input:focus {
    outline: none;
    border-color: var(--gh-sky);
    box-shadow: 0 0 0 4px rgba(63, 169, 226, 0.1);
  }

  .form-input::placeholder {
    color: #999;
  }

  .recaptcha-wrapper {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .recaptcha-wrapper:hover {
    border-color: var(--gh-sky);
  }

  .checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .recaptcha-wrapper:hover .checkbox-custom {
    border-color: var(--gh-sky);
  }

  .recaptcha-text {
    font-size: 14px;
    color: var(--darkgrey);
    flex: 1;
  }

  .recaptcha-logo {
    width: 50px;
    height: 50px;
    margin-left: 12px;
    opacity: 0.6;
  }

  .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gh-navy) 0%, #2a4073 100%);
    color: var(--gh-white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(28, 45, 90, 0.3);
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 45, 90, 0.4);
    background: linear-gradient(135deg, #2a4073 0%, var(--gh-navy) 100%);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .info-section {
    background: var(--gh-white);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
  }

  .package-code {
    display: inline-block;
    background: linear-gradient(135deg, var(--gh-sky) 0%, #2e8bc0 100%);
    color: var(--gh-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .question-title {
    color: var(--gh-navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .question-text {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--darkgrey);
    font-size: 15px;
  }

  .contact-icon {
    width: 20px;
    margin-right: 12px;
    color: var(--gh-orange);
    font-size: 18px;
    display: flex;
    align-items: center;
  }

  .contact-link {
    color: var(--gh-navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-link:hover {
    color: var(--gh-sky);
  }

  @media (max-width: 480px) {
    .form-content {
      padding: 30px 20px;
    }

    .price-amount {
      font-size: 40px;
    }

    .info-section {
      padding: 25px 20px;
    }
  }

  /* ===============================
   CONTACT US PAGE
================================ */
  .gh-contact-section {
    background: #eaf9f8;
    padding: 80px 0;
  }

  .gh-map-wrap {
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    border: 5px solid var(--gh-white);
  }

  .gh-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* FORM */
  .gh-contact-form {
    background: #f9f3ed;
    padding: 40px;
    border-radius: 30px;
  }

  .gh-contact-form h3 {
    color: var(--gh-navy);
    font-weight: 700;
  }

  .gh-contact-form h3 span {
    color: var(--gh-orange);
  }

  .gh-contact-form p {
    color: var(--grey);
    margin-bottom: 20px;
  }

  .gh-contact-form input,
  .gh-contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 14px 18px;
    margin-bottom: 15px;
    font-size: 14px;
    resize: none;
  }



  /* INFO */
  .gh-contact-info h3 {
    color: var(--gh-navy);
    font-weight: 700;
  }

  .gh-contact-info h3 span {
    color: var(--gh-orange);
  }

  .gh-contact-info p {
    color: var(--grey);
    max-width: 420px;
  }

  .gh-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
  }

  .gh-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
  }

  .gh-icon.phone {
    background: var(--gh-sky);
  }

  .gh-icon.email {
    background: #f48fb1;
  }

  .gh-icon.address {
    background: #26a69a;
  }

  .gh-info-item small {
    color: var(--grey);
    display: block;
  }

  .gh-contact-tag {
    margin-top: 30px;
    font-family: "Kaushan Script", cursive;
    color: var(--gh-navy);
  }

  .gh-contact-tag span {
    color: var(--gh-orange);
  }

  /* IMAGE */
  .gh-contact-img {
    position: absolute;
    bottom: -40px;
    right: 0;
    max-height: 360px;
  }

  .gh-dh-grid_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  /* 404 page design start */
   .gh-error-page {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--gh-navy) 0%, #0f1a3a 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        /* Animated background circles */
        .gh-error-page .bg-circles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .gh-error-page .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(63, 169, 226, 0.1);
            animation: float 20s infinite ease-in-out;
        }

        .gh-error-page .circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
            animation-delay: 0s;
        }

        .gh-error-page .circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 50%;
            right: -100px;
            animation-delay: 5s;
            background: rgba(255, 138, 0, 0.08);
        }

        .gh-error-page .circle:nth-child(3) {
            width: 400px;
            height: 400px;
            bottom: -200px;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .gh-error-page .container {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 40px 20px;
            max-width: 800px;
        }

        /* 404 Number with animation */
        .gh-error-page .error-number {
            font-size: 180px;
            font-weight: 900;
            color: var(--gh-white);
            line-height: 1;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            letter-spacing: 10px;
        }

        .gh-error-page .error-number::before {
            content: '404';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gh-orange);
            animation: glitch 3s infinite;
            clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        }

        .gh-error-page .error-number::after {
            content: '404';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gh-sky);
            animation: glitch 2.5s infinite reverse;
            clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        }

        @keyframes glitch {
            0%, 100% {
                transform: translate(0);
                opacity: 0.8;
            }
            20% {
                transform: translate(-3px, 3px);
                opacity: 0.6;
            }
            40% {
                transform: translate(3px, -3px);
                opacity: 0.7;
            }
            60% {
                transform: translate(-3px, -3px);
                opacity: 0.8;
            }
            80% {
                transform: translate(3px, 3px);
                opacity: 0.6;
            }
        }

        /* Rocket illustration */
        .gh-error-page .rocket-container {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 30px auto;
            animation: float-rocket 3s ease-in-out infinite;
        }

        @keyframes float-rocket {
            0%, 100% {
                transform: translateY(0px) rotate(-5deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .gh-error-page .rocket {
            width: 60px;
            height: 80px;
            background: var(--gh-orange);
            border-radius: 50% 50% 10px 10px;
            position: relative;
            margin: 0 auto;
        }

        .gh-error-page .rocket::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: var(--gh-sky);
            border-radius: 50%;
            border: 3px solid var(--gh-white);
        }

        .gh-error-page .rocket::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 25px solid var(--gh-orange-dark);
        }

        .gh-error-page .flame {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 30px;
            background: var(--gh-orange);
            border-radius: 50% 50% 50% 50%;
            animation: flame-flicker 0.3s infinite alternate;
        }

        @keyframes flame-flicker {
            0% {
                transform: translateX(-50%) scaleY(1);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) scaleY(1.3);
                opacity: 0.8;
            }
        }

        .gh-error-page .wing {
            position: absolute;
            top: 40px;
            width: 0;
            height: 0;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
        }

        .gh-error-page .wing.left {
            left: -25px;
            border-right: 30px solid var(--gh-sky);
        }

        .wing.right {
            right: -25px;
            border-left: 30px solid var(--gh-sky);
        }

        /* Stars */
        .gh-error-page .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .gh-error-page .star {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--gh-white);
            border-radius: 50%;
            animation: twinkle 2s infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.5);
            }
        }

        /* Text content */
        .gh-error-page h2 {
            font-size: 42px;
            color: var(--gh-white);
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

       .gh-error-page  p {
            font-size: 18px;
            color: var(--gh-white);
            margin-bottom: 35px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .gh-error-page .home-button {
            display: inline-block;
            padding: 16px 45px;
            background: linear-gradient(135deg, var(--gh-orange) 0%, var(--gh-orange-dark) 100%);
            color: var(--gh-white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .gh-error-page .home-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .gh-error-page .home-button:hover::before {
            left: 100%;
        }

        .gh-error-page .home-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255, 138, 0, 0.4);
        }

        .gh-error-page .home-button:active {
            transform: translateY(-1px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gh-error-page .error-number {
                font-size: 120px;
                letter-spacing: 5px;
            }

            .gh-error-page h2 {
                font-size: 32px;
            }

            .gh-error-page p {
                font-size: 16px;
            }

            .gh-error-page .rocket-container {
                width: 100px;
                height: 100px;
            }

            .gh-error-page .home-button {
                padding: 14px 35px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .gh-error-page .error-number {
                font-size: 90px;
            }

            .gh-error-page h2 {
                font-size: 26px;
            }

            .gh-error-page .container {
                padding: 30px 15px;
            }
        }
/* journey started date inner page */
  .journey-calendar {
    background: #f9fafc;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #eee;
  }

  .jc-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .jc-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .jc-card {
    width: 80px;
    height: 90px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
  }

  .jc-card:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-4px);
  }

  .jc-month {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .jc-date {
    font-size: 26px;
    font-weight: bold;
  }

  .jc-year {
    font-size: 11px;
  }

  .gh-dh-top-and-desc {
    max-height: 224px;
    overflow: auto;
  }
  /* 404 page design end */
                      /* ------------------------------------- */

.gh-policy-title{
  font-weight:700;
  margin-bottom:12px;
  color:var(--darkgrey);
}

/* policy tabs */
.gh-policy-tabs{
  display:flex;
  gap:14px;
  margin-bottom:20px;
}

.gh-policy-tabs button {
	border: none;
	background: transparent;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	color: var(--darkgrey);
	border: 1px solid #ff8a00;
}

.gh-policy-tabs button.active{
  background:var(--gh-orange);
  color:#fff;
}

/* content */

.gh-policy-pane{
  display:none;
  font-size:14px;
  color:var(--grey);
}

.gh-policy-pane.active{
  display:block;
}
 /* ------------------------------------------- */
.gh-tour-ticker {
	display: flex;
	align-items: center;
	background: var(--gh-navy);
	color: #fff;
	overflow: hidden;
	margin-top: -42px;
	position: relative;
	z-index: 10;
}

.gh-ticker-label {
	background: var(--gh-orange);
	padding: 10px 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.gh-ticker-wrap{
  overflow:hidden;
  position:relative;
  padding-left:50px;
}

.gh-ticker-track{
  display:flex;
  gap:50px;
  white-space:nowrap;
  will-change: transform;
}

.gh-ticker-track a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.gh-ticker-track a:hover{
  color:var(--gh-orange);
}

.grecaptcha-badge {
	z-index: 99999;
}
@media (max-width:1366px) {
	.banner_content h5 {
		font-size: 40px;
	}
	.banner_content h1 {
		font-size: 70px;
	}
	.gh-package-actions {
		flex-wrap: wrap;
	}
}
@media (max-width: 1024px) {
  .gh-dh-grid_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:768px) {
	.banner_content {
		left: 20px;
		width: calc(100% - 40px);
	}
	.gh-most-fav-media {
		width: 250px;
	}
	.gh-men-img {
		width:100%;
		display:block;
	}
	.gh-main-title {
		font-size: 3.5rem;
	}
	.gh-top-destination-wrap {
		padding:20px;
	}
	.gh-top-destination {
		padding:20px !important;
	}
	
	.gh-tour-category-section {
		padding: 80px 20px;
	}
	.gh-tour-content {
		padding: 0 0 40px 0;
	}
	.gh-contact-img {
		max-height: 230px;
	}
}
@media (max-width: 575px) {
	.gh-destination-swiper .swiper-slide:hover {
	  width: 100% !important;
	}
	.gh-dh-grid_inner {
		grid-template-columns: 1fr;
	  }
	.gh-dh-grid_inner .gh-tour-card {
		margin: 0px;
	}
	.gh-contact-form {
		padding: 20px;
	}
}
@media (max-width: 400px) {
	  .gh-main-title {
		font-size: 2.5rem;
	  }
	.banner_content {
		padding: 52px 27px;
	}
	.banner_content h1 {
		font-size: 58px;
	}
	
}
