

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
}

    .hero video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translateZ(0);
        will-change: transform;
    }

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        z-index: 1
    }

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
    color: #fff
}

.hero-left,
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 88px 0px;
}

.hero-title {
    font-size: 47px;
    line-height: 1.05;
    max-width: 650px;
    margin: 20px 0
}

.hero-subtitle {
    font-size: 24px;
    letter-spacing: 6px;
    text-transform: uppercase
}

.hero-description,
.hero-right p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 520px;
    color: rgba(255, 255, 255, .88);
}

.hero-right h2 {
    font-size: 48px;
    margin-bottom: 20px
}


.booking-card {
    width: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 20px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

    .booking-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #111;
        font-weight: 400;
    }

.booking-field {
    margin-bottom: 22px;
}

    .booking-field label {
        display: block;
        margin-bottom: 10px;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 1px;
        color: #000;
    }

    .booking-field input,
    .booking-field select {
        width: 100%;
        height: 35px;
        padding: 0 18px;
        border: 1px solid #d9d9d9;
        border-radius: 12px;
        background: #fff;
        color: #111;
        font-size: 14px;
        outline: none;
        transition: .3s;
    }

        .booking-field input::placeholder {
            color: #999;
        }

        .booking-field input:focus,
        .booking-field select:focus {
            border-color: #000;
        }

    .booking-field select {
        appearance: none;
        cursor: pointer;
    }



@media(max-width:992px) {

    .booking-card {
        max-width: 100%;
        padding: 32px 24px;
    }

        .booking-card h3 {
            font-size: 34px;
            margin-bottom: 25px;
        }

    .booking-field input,
    .booking-field select {
        height: 56px;
        font-size: 18px;
    }
}

@media(max-width:991px) {

    nav {
        display: none
    }

    .hero-content {
        grid-template-columns: 1fr
    }



    .hero-title {
        font-size: 54px
    }
}

@media(max-width:576px) {

    .booking-card {
        border-radius: 18px;
        padding: 24px 20px;
    }

        .booking-card h3 {
            font-size: 14px;
        }

        .booking-card button {
            height: 56px;
            font-size: 18px;
        }
}

/* ***************** */
.container {
    width: min(1400px, 90%);
    margin: auto;
}
/* Last Minute Deals */
.deals-section {
    padding: 70px 0;
    background: #fff;
}


.deals-slider {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 1px 1px 5px;
    box-sizing: border-box;
}



.deal-card {
    min-width: 280px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px #f5f5f5;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition: none;
    transform: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

    .deal-card:hover {
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    }

.image-slider {
    overflow: hidden;
}


    .image-slider img {
        width: 100%;
        display: block;
        transform: scale(1);
    }

.deal-card:hover .image-slider img {
    animation: hotelZoom 1s ease forwards;
}

@keyframes hotelZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

.image-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

    .image-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,.45);
        cursor: pointer;
        transition: .35s;
    }

        .image-dots span:hover {
            background: #fff;
        }

        .image-dots span.active {
            width: 26px;
            border-radius: 30px;
            background: #fff;
        }

.image-box {
    height: 215px;
    position: relative;
    overflow: hidden;
    width: 100%;
}



    .image-box img {
        width: 100%;
        height: 215px;
        object-fit: cover;
        transition: opacity .5s ease;
    }

.image-box {
    position: relative;
    overflow: hidden;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

    .image-slider img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-current {
    transform: translateX(0);
}

.slide-out {
    animation: slideOut .6s ease forwards;
}

.slide-in {
    animation: slideIn .6s ease forwards;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}


.hotel-stars {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 6px 10px;
    border-radius: 20px;
    color: #d4a017;
    font-size: 14px;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.heart {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 24px;
    color: #e60023;
    cursor: pointer;
}





.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #111827aa;
    color: white;
    font-size: 22px;
}


.left {
    left: 10px;
}


.right {
    right: 10px;
}





.deal-content {
    padding: 14px;
}



    .deal-content h3 {
        font-size: 18px;
        font-family: Arial;
    }



.location {
    font-size: 13px;
    color: #555;
    margin: 4px 0 0px 0px;
}




.rating span {
    background: #0E7490;
    color: white;
    padding: 3px 4px;
    border-radius: 4px;
    margin-right: 6px;
}



.rating {
    font-size: 13px;
}



    .rating small {
        color: #666;
    }




.discount,
.price-tag {
    display: inline-block;
    margin-top: 5px;
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background: #e11d48;
}


.price-tag {
    background: #7e22ce;
}




.price {
    font-size: 22px;
    font-weight: bold;
    margin-top: -4px;
    display: flex;
    align-items: center;
}


    .price del {
        font-size: 13px;
        color: #777;
        margin-left: 8px;
    }



.night,
.total {
    font-size: 13px;
    color: #555;
}

.total {
    display: flex;
    justify-content: space-between;
}


.deal-prev {
    left: 10px;
}


.deal-next {
    right: 10px;
}

@media(max-width:900px) {

    .deals-slider {
        overflow-x: auto;
        display: block;
        scroll-snap-type: x mandatory;
    }

    .staysdiv {
        display: block;
    }

    .deal-card {
        scroll-snap-align: start;
        margin-bottom: 20px;
        min-width: 260px;
    }
}

.image-slider img {
    pointer-events: none;
}

.image-dots {
    z-index: 100;
    pointer-events: auto;
}

    .image-dots span {
        pointer-events: auto;
        cursor: pointer;
    }

/* Shaped By the Setting */
/* Destinations */
.hotel-destinations {
    padding: 60px 0;
    background: #fff;
}

.destination-card,
.property-card,
.destination-card img,
.property-card img {
    will-change: transform;
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.hotel-title h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
}


.hotel-title p {
    font-size: 22px;
    color: #555;
}



.destination-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}




.destination-card {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

    .destination-card:hover {
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    }


.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 5px 18px rgba(0,0,0,.18);
}


.heart-icon {
    font-size: 24px;
    color: #111;
}


.heart-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top-color: #0E7490;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}



.wishlist-btn.loading .heart-icon {
    display: none;
}


.wishlist-btn.loading .heart-loader {
    display: block;
}



.wishlist-btn.active .heart-icon {
    color: #e11d48;
}



@keyframes spin {

    to {
        transform: rotate(360deg);
    }
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.destination-card:hover img {
    transform: scale(1.08);
}




.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .05));
}




.destination-content {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    color: white;
}



    .destination-content small {
        font-size: 13px;
    }



    .destination-content h3 {
        font-size: 20px;
    }



.hotel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.discount {
    background: #475569;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 15px;
    margin-top: 12px;
    animation: premiumBounce 2s ease-in-out infinite;
    transform-origin: center;
}


@keyframes premiumBounce {

    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.04);
    }
}


.staysdiv {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.commona {
    display: inline-block;
    color: #111;
    font-size: 22px;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid #111;
    transition: .35s;
}


.hotel-bottom del {
    font-size: 14px;
    opacity: .7;
}



.hotel-bottom b {
    font-size: 26px;
    margin-left: 8px;
}



.destination-content p {
    font-size: 14px;
    margin-top: 8px;
    color: #fff;
}




.hidden-destination {
    display: none;
}


    .hidden-destination.show {
        display: block;
        animation: showCard .2s ease;
    }



@keyframes showCard {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.load-destination {
    margin: 50px auto 0;
    display: block;
    padding: 14px 45px;
    border-radius: 40px;
    background: white;
    border: 2px solid #111;
    font-size: 20px;
    cursor: pointer;
}



@media(max-width:1200px) {

    .destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media(max-width:700px) {

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .hotel-title h2 {
        font-size: 28px;
    }
}

.destination-content,
.destination-content * {
    font-family: Arial, Helvetica, sans-serif !important;
}


    .destination-content h3 {
        font-weight: 400;
        letter-spacing: 0;
    }



.hotel-bottom b {
    font-size: 24px;
    font-weight: 700;
}


.hotel-bottom del {
    font-size: 14px;
    font-weight: 400;
}


.discount {
    font-size: 13px;
    font-weight: 600;
}
/* Property Section */
.property-section {
    padding: 60px 0;
    background: #fff;
}

.property-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.property-slider {
    display: flex;
    gap: 18px;
    overflow: hidden;
    scroll-behavior: auto;
    margin-top: 14px;
}

    .property-slider::-webkit-scrollbar {
        display: none;
    }

.property-card {
    min-width: 265px;
    cursor: pointer;
}



    .property-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }



    .property-card:hover img {
        transform: scale(1.02);
    }



    .property-card h3 {
        margin-top: 12px;
        font-size: 18px;
        font-family: Arial, sans-serif;
        font-weight: 700;
    }
/* arrows */


.property-arrow {
    position: absolute;
    top: 45%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 5px 20px #0002;
    font-size: 30px;
    cursor: pointer;
    display: none;
}



.right-arrow {
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.left-arrow {
    left: 0;
    align-items: center;
    justify-content: center;
}

@media(max-width:700px) {

    .property-card {
        min-width: 240px;
    }


        .property-card img {
            height: 180px;
        }
}
/* Experience Sections */
.luxury-slider-section {
    padding: 80px 0;
    overflow: hidden;
}



.slider-track {
    height: 625px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}



.luxury-slide {
    position: absolute;
    width: 750px;
    height: 500px;
    transition: .7s ease;
}



    .luxury-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }
    /* center */

    .luxury-slide.activeimg {
        width: 800px;
        height: 450px;
        z-index: 5;
    }
/* text */


.slide-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    text-align: center;
    padding-top: 7px;
    opacity: 0;
    transition: .4s;
}



    .slide-text h2 {
        font-size: 24px;
        font-weight: 400;
    }



    .slide-text p {
        color: #777;
        font-size: 13px;
        line-height: 1.5;
    }



.luxury-slide.activeimg .slide-text {
    opacity: 1;
}
/* controls */

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}



.slider-btn {
    border: none;
    background: none;
    font-size: 32px;
    cursor: pointer;
    color: #777;
}



.slider-progress {
    width: 220px;
    height: 3px;
    background: #e5e5e5;
    overflow: hidden;
}



    .slider-progress span {
        display: block;
        height: 100%;
        background: #111;
        transition: .5s;
    }





@media(max-width:900px) {


    .slider-track {
        height: 535px;
    }



    .luxury-slide {
        width: 250px;
        height: 300px;
    }



        .luxury-slide.activeimg {
            width: 450px;
            height: 360px;
        }



    .slide-text {
        width: 300px;
    }



        .slide-text h2 {
            font-size: 24px;
        }
}

.prev {
    position: absolute;
    left: 0px;
    z-index: 9999;
    background: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 26px;
}

.next {
    position: absolute;
    right: 0px;
    z-index: 9999;
    background: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 26px;
}

.deldiv del {
    font-size: 13px;
    color: #777;
    font-weight: bold;
}

.price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow-icon {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    line-height: 1;
}

.contact-tooltip {
    position: absolute;
    right: 0px;
    height: 80px;
    background: #0E7490;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -14px;
    font-size: 20px;
    bottom: -5px;
    width: 37px;
    border-top-left-radius: 12px;
}

.arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-2px);
    }
}



.contact-tooltip:hover {
    animation: none;
    transform: translateY(-3px);
}


.contact-tooltip:hover {
    background: #0E7490;
}

.tooltip-box {
    position: absolute;
    bottom: 87px;
    left: -139%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    z-index: 100;
}

    .tooltip-box::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 5px;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #111;
    }

.contact-tooltip:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
}
