/* ===================== OFFER BLOCK STYLES ===================== */

.offer-block .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
}

.offer-block .inner-box .image {
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 10px;
}

.offer-block .inner-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.offer-block .inner-box .content-box {
    background: rgba(247, 243, 238, 0.8);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    padding: 25px 30px 24px;
    position: absolute;
    bottom: 30px;
    left: 0;
    min-width: 270px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.offer-block .inner-box .content-box:before {
    background-color: var(--tts-buttton-bg);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.offer-block .inner-box .content-box .title {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 25px;
}

.offer-block .inner-box .content-box .title a {
    color: inherit;
}

.offer-block .inner-box .content-box p {
    margin: 0;
}

.offer-block .inner-box:hover {
    background-color: var(--tts-buttton-bg1);
}

.offer-block .inner-box:hover .content-box:before {
    height: 100%;
    z-index: -1;
}

.offer-block .inner-box:hover .content-box .title a {
    color: var(--tts-buttton-txt);
}

.offer-block .inner-box:hover .content-box p {
    color: var(--tts-buttton-txt);
}

/* ===================== NAVIGATION STYLES ===================== */

.offer_page .place-nav .nav {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
}

.offer_page .place-nav .nav li {
    margin-bottom: 16px;
    margin-right: 4px;
    list-style: none;
}

.offer_page .place-nav .nav li a {
    color: #111827;
    padding: 5px 20px;
    border-radius: 30px;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
}

.offer_page .place-nav .nav li a.active,
.place-nav .nav li a:hover {
    background: #CF3425;
    color: #FFF;
}

/* ===================== RESPONSIVE STYLES ===================== */

@media (max-width: 768px) {
    .offer-block .inner-box {
        border-radius: 8px;
    }

    .offer-block .inner-box .image {
        border-radius: 8px;
    }

    .offer-block .inner-box .content-box {
        position: static;
        padding: 20px;
        min-width: auto;
        border-radius: 0 0 8px 8px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(247, 243, 238, 1);
    }

    .offer-block .inner-box .content-box:before {
        display: none;
    }

    .offer-block .inner-box .content-box .title {
        font-size: 18px;
    }

    .offer_page .place-nav .nav {
        justify-content: center;
    }

    .offer_page .place-nav .nav li {
        margin-right: 8px;
        margin-bottom: 12px;
    }

    .offer_page .place-nav .nav li a {
        padding: 6px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .offer-block .inner-box .content-box .title {
        font-size: 20px;
    }

    .offer-block .inner-box .content-box p {
        font-size: 0.85rem;
    }

    .offer-block .inner-box .content-box {
        padding: 16px;
    }

    .offer_page .place-nav .nav li a {
        font-size: 13px;
        padding: 5px 12px;
    }

    .offer-block .inner-box:hover .content-box .title a,
    .offer-block .inner-box:hover .content-box p {
        color: inherit;
    }
}


/*hotel-destinations*/
.hotel-destinations-item .inner-box {
    background-color: #ffffff;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.hotel-destinations-item .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.hotel-destinations-item .inner-box .image-box .image img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.hotel-destinations-item .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.hotel-destinations-item .content-box {
    padding: 20px 20px 20px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.hotel-destinations-item .content-box .inner-box {
    margin: 0;
    box-shadow: none;
}

.hotel-destinations-item .content-box .title {
    line-height: 30px;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 25px;
}

.hotel-destinations-item .content-box .title a {
    color: inherit;
}

.hotel-destinations-item .content-box .price {
    color: #121212;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.hotel-destinations-item .inner-box:hover .content-box .title a {
    color: var(--tts-buttton-bg);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hotel-destinations-item .inner-box {
        margin: 10px 0;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .hotel-destinations-item .inner-box .image-box .image {
        height: 180px;
    }

    .hotel-destinations-item .content-box {
        padding: 15px;
    }

    .hotel-destinations-item .content-box .title {
        font-size: 18px;
        line-height: 26px;
    }

    .hotel-destinations-item .content-box .price {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .hotel-destinations-item .inner-box .image-box .image {
        height: 150px;
    }

    .hotel-destinations-item .content-box {
        padding: 12px;
    }

    .hotel-destinations-item .content-box .title {
        font-size: 20px;
    }

    .hotel-destinations-item .content-box .price {
        font-size: 13px;
    }
}

/* Trending Hotels Background */
.trending-hotels {
    background-color: rgba(170, 132, 83, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between; /* Distribute items evenly */
}

.service-block-three {
    height: 450px;
}

.service-block-three .inner-box {
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 100%;
    border-radius: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-block-three .inner-box .image-box .image img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .inner-box:hover .image-box img {
    transform: scale(1.05);
}

.service-block-three .content-box {
    padding: 30px 30px 15px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .content-box .title {
    line-height: 30px;
    margin-bottom: 10px;
    font-size: 25px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .content-box .title a {
    color: inherit;
}

.service-block-three .inner-box:hover .content-box .title a {
    color: var(--tts-buttton-bg);
}

.service-block-three .content-box .inner-box {
    border: none;
    box-shadow: none;
    border-radius: 0px;
}

.service-block-three .content-box p {
    margin-bottom: 0;
}

.service-block-three .content-box .hotel-rate {
    border-top: 1px solid rgba(106, 105, 105, 0.2);
    margin-top: 20px;
    padding-top: 20px;
}

.service-block-three .content-box .hotel-rate .fa-star {
    color: #cf1010;
}

@media only screen and (max-width: 992px) {
    .service-block-three .inner-box .image-box .image {
        height: 220px;
    }

    .service-block-three .content-box {
        padding: 20px 20px 15px;
    }

    .service-block-three .content-box .title {
        font-size: 18px;
        line-height: 28px;
    }

    .service-block-three .content-box p {
        font-size: 0.85rem;
    }
}

@media only screen and (max-width: 600px) {
    .service-block-three .inner-box .image-box .image {
        height: 180px;
    }

    .service-block-three .content-box .title {
        font-size: 20px;
        line-height: 24px;
    }

    .service-block-three .inner-box {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    }

    .service-block-three{
        height: 350px;
    }
}

/* Blog Card Base Styles */
.blog-card {
    background-color: #ffffff;
    z-index: 1;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.blog-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #F5F5F5;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    opacity: 0;
}

.blog-card:hover::before {
    width: 100%;
    opacity: 1;
}

.blog-card .blog-img {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-card .blog-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.blog-card .blog-content {
    padding: 0 20px 0;
}

.blog-card .blog-content span {
    font-size: 16px;
    color: #121212;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-card .blog-content h3 {
    margin-top: 10px;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-card .blog-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card .blog-content p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.blog-card .blog-content .read-btn {
    color: var(--tts-buttton-bg);
    display: block;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;
}

.blog-card .blog-content .read-btn:hover {
    color: var(--tts-buttton-bg1);
}

/* Responsive Styles */

/* Tablets (up to 991px) */
@media (max-width: 991px) {
    .blog-card {
        padding: 15px;
    }

    .blog-card .blog-img {
        height: 200px;
    }

    .blog-card .blog-content h3 {
        font-size: 22px;
    }

    .blog-card .blog-content span,
    .blog-card .blog-content p {
        font-size: 14px;
    }
}

/* Phones (up to 767px) */
@media (max-width: 767px) {
    .blog-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    .blog-card .blog-img {
        height: 180px;
    }

    .blog-card .blog-content {
        padding: 0 10px 0;
    }

    .blog-card .blog-content h3 {
        font-size: 20px;
    }

    .blog-card .blog-content span,
    .blog-card .blog-content p {
        font-size: 13px;
    }

    .blog-card .blog-content .read-btn {
        font-size: 14px;
    }
}

/* Small phones (up to 480px) */
@media (max-width: 480px) {
    .blog-card {
        padding: 12px;
    }

    .blog-card .blog-img {
        height: 150px;
    }

    .blog-card .blog-content h3 {
        font-size: 18px;
    }

    .blog-card .blog-content span,
    .blog-card .blog-content p,
    .blog-card .blog-content .read-btn {
        font-size: 12px;
    }
}


/* Feature Section */
.feature-area {
    background-color: rgba(170, 132, 83, 0.1);
}

.feature-area .feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.feature-area .feature-item {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 20px);
    /* 3 items per row on desktop */
    box-sizing: border-box;
}

.feature-area .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-area .feature-icon i {
   color: var(--tts-buttton-bg);
   font-size: 30px;
}

.feature-area .feature-title {
    font-size: 25px;
    margin: 15px 0;

}

.feature-area .feature-item p {
    margin-bottom: 0;
}

/* Tablet - 2 items per row */
@media (max-width: 768px) {
    .feature-area .feature-item {
        flex: 1 1 calc(50% - 20px);
        padding: 20px;
    }

    .feature-area .feature-icon img {
        width: 60px;
        height: 60px;
    }

    .feature-area .feature-title {
        font-size: 1.1rem;
    }

    .feature-area .feature-item p {
        font-size: 0.9rem;
    }
}

/* Mobile - 1 item per row */
@media (max-width: 576px) {
    .feature-area .feature-item {
        flex: 1 1 100%;
        padding: 15px;
    }

    .feature-area .feature-icon img {
        width: 50px;
        height: 50px;
    }

    .feature-area .feature-title {
        font-size: 18px;
    }

    .feature-area .feature-item p {
        font-size: 0.85rem;
    }
}



/* Service Section - Outer Box */
.service-section-two .outer-box {
    position: relative;
    margin-right: -1px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: background-image 0.3s ease-in-out;
    transition: background-image 0.3s ease-in-out;
}

.service-section-two .inner-box {
    border-right: 1px solid rgba(255, 255, 255, 0.82);
    overflow: hidden;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.service-section-two .content {
    position: relative;
    padding: 43px 50px 35px;
    width: 100%;
    z-index: 1;
    transition: all 200ms ease;
}

.service-section-two .category {
    color: #fff;
    font-size: 16px;
}

.service-section-two .title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 300ms ease;
    font-size: 25px;
}

.service-section-two .title a {
    color: #fff;
    text-decoration: none;
}

.service-section-two .overlay-content {
    background-color: var(--tts-buttton-bg);
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    opacity: 0;
    padding: 43px 50px 35px;
    position: absolute;
    visibility: hidden;
    transform: translateY(100%);
    width: 100%;
    z-index: 1;
    transition: all 400ms ease;
    align-items: center;
}

.service-section-two .inner-box:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.service-block-two .inner-box:hover .content {
    opacity: 0;
    visibility: hidden;
}

.service-block-two .hotel-rate {
    color: #fff;
    font-size: 16px;
}

.service-block-two .hotel-rate .fa-star {
    color: #cf1010;
}

.service-block-two .hotel-rate-review {
    margin-left: 8px;
    font-weight: bold;
}

.service-block-two .inner-box:hover .hotel-rate .fa-star {
    color: #ffffff;
}

@media screen and (max-width: 991.98px) {
    .service-section-two .inner-box {
        min-height: 450px;
    }
}

@media screen and (max-width: 480px) {
    .service-section-two .inner-box {
        min-height: 300px;
    }

    .service-section-two .content,
    .service-section-two .overlay-content {
        padding: 20px;
        text-align: left;
        align-items: flex-start;
    }

    .service-section-two .title {
        font-size: 18px;
    }

    .service-section-two .category,
    .service-block-two .hotel-rate {
        font-size: 14px;
    }

    .service-section-two .overlay-content {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    .service-section-two .content {
        display: none;
    }

    .service-block-two .hotel-rate .fa-star {
        color: #ffffff;
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    background-color: #ffffff;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
    font-size: 25px;
    font-weight: bold;
    margin: 0px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #cf1010;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Mobile Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .testimonials .testimonial-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .testimonials .testimonial-item .testimonial-img {
        margin: 0 0 15px 0;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
    }

    .testimonials .testimonial-item h4 {
        font-size: 13px;
    }

    .testimonials .testimonial-item .stars {
        margin: 8px 0;
    }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        font-size: 22px;
    }

    .testimonials .testimonial-item p {
        font-size: 0.85rem;
        margin-top: 10px;
    }
}




/* Default styles for navigation buttons */
.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    width: 44px;
    height: 44px;
    font-size: 20px;
    color: #111827;
    background: #FFF;
    text-shadow: none;
    top: 0;
    cursor: pointer;
    border: 1px solid #dedede;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-center .owl-nav button.owl-prev {
    left: 20px;
}

.nav-center .owl-nav button.owl-next {
    right: 20px;
}

/* max-width: 1199.98px */
@media (max-width: 1199.98px) {

    .nav-center .owl-nav button.owl-next,
    .nav-center .owl-nav button.owl-prev {
        width: 38px;
        height: 38px;
    }
}

/* max-width: 991.98px */
@media (max-width: 991.98px) {

    .nav-center .owl-nav button.owl-next,
    .nav-center .owl-nav button.owl-prev {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}


@media screen and (max-width:480px) {
    .testimonials .testimonial-item {
        flex-direction: column;
    }

    .blog-card .blog-content {
        padding: 10px 0;
    }

    .hotel-destinations {
        padding-bottom: 0;
    }
}