ul,
ol,
li {
    list-style: none;
    display: block;

    padding: 0;

}

.breadcrumb a {
    color: var(--para-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--main-color);
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    position: relative;
    max-height: 420px;
}


.tour-img img {
    width: 100%;
    /* max-height: 400px; */
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.tour-gallery .tour-img:nth-child(1) {
    grid-area: 1 / 1 / 5 / 4;
}

.tour-gallery .tour-img:nth-child(2) {
    grid-area: 1 / 4 / 5 / 6;
}

.tour-gallery .tour-img:nth-child(3) {
    grid-area: 1 / 6 / 3 / 8;
}

.tour-gallery .tour-img:nth-child(4) {
    grid-area: 3 / 6 / 5 / 8;
}

.tour-gallery .tour-img:nth-child(n+5) {
    display: none;
}

/* Overlay button */
.more-img-overlay {
    padding: 0.5rem 1rem;
    min-width: 50px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: var(--white-color);
    right: 20px;
    bottom: 30px;
    border: none;
    backdrop-filter: blur(10px);
    border: 2px solid var(--white-color);
}

.more-img-overlay:hover {
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: var(--box-shadow);
}



/* Product Info */
.hotel-header {
    margin: 2rem 0;
}

.hotel-meta {
    display: flex;
    margin-bottom: 1rem;
    gap: 2rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hotel-stars i {
    color: var(--second-color);
    font-size: 16px;
}

.hotel-level {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    gap: 5PX;
}

.hotel-level i {
    color: var(--main-color);
    font-size: 16px;
}

.review-count {
    color: var(--para-color);
    font-size: 14px;
}

.hotel-title {
    font-size: clamp(2rem, 1.5rem, 1rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black-color);
}

.hotel-subtitle {
    color: var(--para-color);
    font-size: 16px;
}


/* Reviews Section */
.reviews-section {
    margin: 3rem 0;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.overall-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-color);
}

.rating-details {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.rating-number {
    min-width: 20px;
    font-size: 14px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--second-color);
    transition: width 0.5s ease;
}

.review-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reviewer-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-meta {
    font-size: 14px;
    color: var(--para-color);
}

/* Similar Products */
.similar-products {
    margin: 3rem 0;
}

.tour-section-title {
    font-size: clamp(1.5rem, 2rem, 1rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--black-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
}

.hotel-card {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-image img {
    height: 200px;
    min-width: 100%;
    position: relative;
}

.hotel-content {
    padding: 1rem;
}

.hotel-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotel-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        height: 300px;
    }

    .days-container {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 1rem;
    }

    .search-bar {
        display: none;
    }
}

.sticky-booking {
    position: relative;
    height: 90%;
}

.booking-section {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    max-width: 400px;
    margin-top: 30px;
    margin-left: auto;
    position: sticky;
    top: 80px;
    border: 1px solid transparent;
    border-top: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, #3acfd5, #3a4ed5) border-box;
}

.hotel-description {
    margin: 20px auto;
}

.section-header {
    font-size: clamp(1.2rem, 1.5rem, 1.7rem);
}

.booking-section h2 {
    color: var(--black-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.booking-section label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--para-color);
    font-weight: 500;
}

.booking-section select,
.booking-section input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--main-grey);
    font-size: 16px;
    background-color: var(--main-grey);
    color: var(--black-color);
    cursor: pointer;
}

.booking-section a {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    text-align: center;
}

.booking-section button:hover {
    background-color: var(--third-color);
}

.policy {
    display: flex;
    align-items: center;
    background-color: var(--main-grey);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--black-color);
}

.policy svg {
    margin-right: 10px;
    fill: var(--main-color);
}

.info {
    margin-top: 15px;
    font-size: 14px;
    color: var(--para-color);
}

.info li {
    margin-bottom: 6px;
}

.trip-brochure-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.trip-brochure-banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.trip-brochure-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.trip-brochure-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
}

.trip-brochure-banner .text h5 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: bold;
}

.trip-brochure-banner .text p {
    margin: 0;
    font-size: 14px;
    color: var(--white-color);
}

.trip-brochure-banner .download-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.trip-brochure-banner .download-btn:hover {
    background: var(--white-color);
    color: var(--main-color);
}

.sidebar-container {
    max-width: 400px;
    margin: 20px auto;
    height: 95%;
}

.promo-box {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgb(233 233 233 / 50%);
    border-radius: 50%;
    transform: rotate(45deg);
}

.promo-box h3 {
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.promo-box p {
    color: var(--para-color);
    /* font-size: 0.95rem; */
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.get-started-btn {
    background-color: var(--second-color);
    color: var(--black-color);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 194, 14, 0.3);
}

.get-started-btn:hover {
    background-color: #e6ae0c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 194, 14, 0.4);
}

.hotel-info-box {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 0;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 80px;
    border: 1px solid transparent;
    border-top: 5px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #3acfd5, #3a4ed5) border-box;
}

.hotel-info-header {
    background: var(--light-color);
    padding: 20px 25px;
    color: var(--main-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.01);
}

.hotel-info-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black-color);
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--second-color);
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hotel-info-content {
    padding: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.info-item:hover {
    background-color: var(--light-color);
    transform: translateX(5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-icon {
    background-color: rgba(255, 194, 14, 0.1);
    color: var(--second-color);
}

.expedia-icon {
    background-color: rgba(0, 131, 145, 0.1);
    color: var(--main-color);
}

.maps-icon {
    background-color: rgba(58, 207, 213, 0.1);
    color: var(--third-color);
}

.website-icon {
    background-color: rgba(29, 45, 83, 0.1);
    color: var(--black-color);
}

.info-content {
    flex: 1;
}

.info-text {
    color: var(--para-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--third-color);
}

.address-text {
    color: var(--black-color);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .sidebar-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .promo-box,
    .hotel-info-content {
        padding: 20px;
    }

    .hotel-info-header {
        padding: 15px 20px;
    }
}

/*============================
  All Hotels page
============================ */
.hotel-page .section-title {
    margin-bottom: 30px;
    padding-bottom: 10px;
    margin-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hotel-page .section-title h2 {
    text-align: start;
    margin: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.hotel-page .allhotel-swiper {
    width: 100%;
    padding: 30px 10px;
}

.allhotel-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 4rem;
}

.hotel-page .swiper-button-next,
.hotel-page .swiper-button-prev {
    opacity: 1;
    visibility: visible;
    top: 30px;
    right: 0;
    transform: none;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    box-shadow: var(--box-shadow);
}

.hotel-page .swiper-button-next:after,
.hotel-page .swiper-rtl .swiper-button-next:after {
    text-align: center;
    color: var(--main-color);
    display: block;
    width: 14px;
    height: 14px;
    margin: auto;
    font-size: 14px;
    font-weight: 500;
}

.hotel-page .swiper-button-prev:after,
.hotel-page .swiper-rtl .swiper-button-prev:after {
    text-align: center;
    color: var(--main-color);
    display: block;
    width: 14px;
    height: 14px;
    margin: auto;
    font-size: 14px;
    font-weight: 500;

}

.hotel-page .swiper-slide .hotel-card {
    background: var(--white-color);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition: transform 0.3s;
    max-width: 300px;
}

.hotel-page .swiper-slide {
    display: block;
    margin-inline: 10px;
    max-width: 350px;
}

.hotel-page .swiper-slide:nth-child(even) {
    margin-top: 30px;
}

.hotel-page .hotel-card .hotel-img {
    position: relative;
    overflow: hidden;
}

.hotel-page .hotel-card .hotel-img img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transform: translate(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.hotel-page .hotel-card:hover .hotel-img img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.hotel-page .hotel-card:hover .hotel-img img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.hotel-page .hotel-card .hotel-img img {
    width: 100%;
    height: 230px;
    position: relative;
    display: block;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
    transition: 500ms;
    border-bottom: 1px solid #eee;
}

.hotel-page .hotel-location {
    position: absolute;
    top: 0;
    left: -1px;
    /* background: var(--light-color); */
    color: var(--main-color);
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    /* border-radius: 5px; */
    z-index: 10;
    background-image: url(../images/shapes/shape-angle-light.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 40px;
    min-width: 125px;

}

.hotel-text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 10px 0;
}

.hotel-star {
    display: flex;
    align-items: center;
}

.hotel-star span {
    margin-right: 3px;
}

.hotel-star i {
    color: var(--second-color);
    font-size: 14px;
}

.hotel-level i {
    color: var(--black-color)
}

.hotel-page .hotel-details {
    padding: 20px;
}

.hotel-page .hotel-location {
    color: var(--para-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.hotel-page .hotel-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hotel-page .hotel-title a {
    color: var(--black-color);
}

.hotel-page .hotel-meta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.hotel-page .hotel-link {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.hotel-page .btn-effect {
    color: var(--main-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid var(--white-color) !important;
    text-decoration: underline;
    letter-spacing: 1px;
    padding-inline: 0;
}

.hotel-page .btn-effect:hover {
    color: var(--white-color);
    padding-inline: 10px;
    text-decoration: none;
}

.all-hotels {
    text-align: center;
    margin-top: 10px;
}

.all-hotels .btn-effect {
    color: var(--main-color);
    font-weight: 500;
    font-size: 16px;
    text-decoration: underline;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hotel-page .swiper {
        padding: 0 20px;
    }

    .hotel-page .hotel-meta {
        flex-direction: column;
        gap: 5px;
    }
}

.allhotel-swiper.no-slider .swiper-slide {
    flex: 1;
    max-width: 100%;
    margin-inline: 20px;
}
/* Scroll Animation */
.hotel-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .hotel-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .hotel-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .hotel-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  .hotel-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }