﻿:root {
    --primary: #2C2C2C;
    --secondary: #6F6F6F;
    --accent: #020e29 ;
    --accent-hover: #020e29 ;
    --white: #FFFFFF;
    --light: #F8F8F8;
    --footer: #232323;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto_5.2.5_latin-300-normal.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto_5.2.5_latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto_5.2.5_latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto_5.2.5_latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto_5.2.5_latin-900-normal.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Roboto', sans-serif;
    color: var(--primary);
    background: #fff;
    overflow-x: hidden;
    font-size:14px;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #F8F4EC;
}

::-webkit-scrollbar-thumb {
    background: #020e29 ;
    border-radius: 50px;
    border: 2px solid #F8F4EC;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #c9a262;
    }

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #020e29  #F8F4EC;
}

/* ===========================
        HEADER
=========================== */

.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #ececec;
}

.navbar {
    padding: 7px 0;
}

.navbar-brand img {
    height: 58px;
    width: auto;
    display: block;
}

.navbar-nav {
    gap: 14px;
}

.nav-link {
    color: #2C2C2C;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: .3s;
}

    .nav-link:hover {
        color: #bd7344;
    }

    .nav-link.active {
        color: #020e29 ;
    }

/* Book Button */

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #020e29 ;
    color: #fff;
    padding: 14px 34px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    transition: .35s;
}

    .book-btn:hover {
        background: #020e29 ;
        color: #fff;
    }

/* Toggle */

.navbar-toggler i {
    font-size: 34px;
    color: #2C2C2C;
}

/*active class*/
.navbar-nav .nav-link.activeinmenu {
    color: #bd7344 !important;
    font-weight: 600;
}

    .navbar-nav .nav-link.activeinmenu::after {
        width: 100%;
        background: #020e29 ;
    }

/* Mobile */

@media(max-width:991px) {

    .navbar-collapse {
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .navbar-nav {
        gap: 8px;
        align-items: center !important;
    }

    .nav-link {
        padding: 10px 0;
    }

    .book-btn {
        width: 100%;
        text-align: center;
    }
}


/*==============================
            FOOTER
===============================*/

.footer-section {
    background: #020e29;
    color: #d8d8d8;
    padding: 60px 0 0;
}

.footer-logo img {
    height: 110px;
    width: auto;
}

.footer-about {
    color: #bcbcbc;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
    width:88%;
}

.footer-section h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-section ul li {
        margin-bottom: 10px;
    }

        .footer-section ul li a {
            color: #bcbcbc;
            text-decoration: none;
            transition: .3s;
        }

            .footer-section ul li a:hover {
                color: #bd7344;
                padding-left: 5px;
            }

.footer-contact li {
    display: flex;
    gap: 12px;
    line-height: 1.8;
}

.footer-contact i {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
}

    .footer-bottom p {
        margin: 0;
        text-align: center;
        color: #a8a8a8;
        font-size: 14px;
    }

/*==============================
        RESPONSIVE
===============================*/

@media(max-width:991px) {

    .footer-section {
        padding: 60px 0 0;
    }
}

@media(max-width:767px) {
    .footer-about{
        width:100%;
    }
    .header-contact {
        text-align: center;
        padding: 15px;
    }
    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        gap: 10px;
    }
}

/*=========================================
                HERO SECTION
=========================================*/

.hero-section {
    position: relative;
    height: 87vh;
    display: flex;
    align-items: center;
}


    /* =========================================
   HERO CONTENT
========================================= */

    .hero-section > .container {
        position: relative;
        z-index: 5;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


/* =========================================
   HERO TEXT
========================================= */

.hero-contenttop {
    position: relative;
    z-index: 5;
    max-width: 650px;
    color: #fff;
    margin-top: -80px;
}


/* =========================================
   HERO SEARCH
========================================= */

.hero-search {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px;
    z-index: 1000;
}


    /* =========================================
   SEARCH CONTAINER
========================================= */

    .hero-search > .container {
        width: 100%;
    }


/* =========================================
   IMAGE CAROUSEL
========================================= */

.hero-image-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}


/* =========================================
   IMAGE TRACK
========================================= */

.hero-image-track {
    display: flex;
    width: 600%;
    height: 100%;
    transform: translateX(0);
    transition: transform 1s ease-in-out;
    will-change: transform;
}


/* =========================================
   INDIVIDUAL IMAGE
========================================= */

.hero-img-slide {
    flex: 0 0 16.6666667%;
    width: 16.6666667%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}


/* =========================================
   HERO OVERLAY
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(2, 14, 41, 0.62) 0%, rgba(2, 14, 41, 0.38) 32%, rgba(2, 14, 41, 0.12) 68%, rgba(2, 14, 41, 0.02) 100% );
    z-index: 3;
    pointer-events: none;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-section > .container {
    position: relative;
    z-index: 5;
}
.hero-contenttop {
    position: relative;
    z-index: 5;
    max-width: 650px;
    color: #fff;
    margin-bottom: 30px;
}

.hero-tag {
    display: inline-block;
    color: #bd7344;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-contenttop h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 28px;
}

.hero-contenttop p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 560px;
    color: rgba(255,255,255,.92);
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #020e29 ;
    color: #fff;
    padding: 16px 42px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: .35s;
}

    .hero-btn:hover {
        background: #020e29 ;
        color: #fff;
    }

.hero-search {
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    z-index: 10;
}
/*=========================================
                SEARCH BOX
=========================================*/

.hero-search {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 20;
}


.search-box {
    background: #fff;
    border-radius: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr 140px;
    align-items: center;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    z-index: 1000;
}



.search-item {
    padding: 0 25px;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    border-right: 1px solid #e8e8e8;
}



    .search-item:last-of-type {
        border-right: none;
    }




.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    color:#000;
    width: 100%;
}



    .search-input-wrap span {
        color: #020e29 ;
        font-size: 24px;
    }



    .search-input-wrap input {
        border: none;
        outline: none;
        width: 100%;
        font-size: 15px;
        font-family: 'Roboto', sans-serif;
        color: #000;
        background: transparent;
    }



        .search-input-wrap input::placeholder {
            color: #000;
        }


.search-btn {
    height: 60px;
    border: none;
    border-radius: 40px;
    background: #020e29 ;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s;
}


    .search-btn:hover {
        background: #020e29 ;
    }

    .search-btn span {
        font-size: 22px;
    }

/* Destination dropdown */

.search-dropdown {
    position: absolute;
    top: 70px;
    left: 0px;
    width: calc(100% - 0px);
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    overflow-y: auto;
    z-index: 99999;
    max-height: 300px;
    scrollbar-width: thin;
    scrollbar-color: #020e29  transparent;
}

    .search-dropdown::-webkit-scrollbar {
        width: 5px;
    }

    .search-dropdown::-webkit-scrollbar-thumb {
        background: #020e29 ;
        border-radius: 10px;
    }

        .search-dropdown::-webkit-scrollbar-thumb:hover {
            background: #c9a15e;
        }

.hotel-nameins {
    font-size: 15px;
    font-weight: 600;
    color: #020e29;
}

.dropdown-item {
    padding: 10px 20px;
    cursor: pointer;
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 15px;
}
.dropdown-item div i{
    font-size:20px;
}

    .dropdown-item:hover {
        background: linear-gradient(90deg, rgba(213, 214, 201, 0.75), rgba(213, 214, 201, 0.45), rgba(213, 214, 201, 0.75));
    }

    .city-name,
    .hotel-name {
        font-weight: 600;
        color: #020e29;
    }

    .country-name {
        font-size: 13px;
        color: #888;
        margin-top: 2px;
    }
    /* Guest dropdown */

    .guest-dropdown {
        position: absolute;
        top: 75px;
        left: 20px;
        width: 250px;
        background: white;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
        z-index: 100;
    }

    .guest-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
    }

    .counter {
        display: flex;
        align-items: center;
        gap: 18px;
    }



        .counter button {
            border: none;
            background: none;
            font-size: 22px !important;
            cursor: pointer;
            color: #020e29;
        }



        .counter span {
            min-width: 20px;
            text-align: center;
            font-weight: 600;
        }



    .hidden {
        display: none;
    }

    @media(max-width:991px) {

        .hero-section {
            align-items: flex-start;
            padding-top: 120px;
        }

        .hero-contenttop {
            text-align: center;
        }

            .hero-contenttop h1 {
                font-size: 46px;
            }

        .hero-search {
            position: relative;
            bottom: auto;
        }


        .search-box {
            grid-template-columns: 1fr;
            border-radius: 25px;
            padding: 15px;
        }



        .search-item {
            border-right: none;
            border-bottom: 1px solid #eee;
        }



        .search-btn {
            margin-top: 10px;
        }
    }

    @media(max-width:576px) {

        .hero-contenttop h1 {
            font-size: 36px;
        }

        .hero-contenttop p {
            font-size: 16px;
        }

        .search-input-wrap input {
            font-size: 14px;
        }
    }
    /*==============================
        FAQ SECTION
==============================*/

    .faq-section {
        position: relative;
        padding: 60px 20px;
        overflow: hidden;
        /*    background: radial-gradient(circle at top right,#f9f5ee 0%,transparent 30%), radial-gradient(circle at bottom left,#eef8ff 0%,transparent 35%), #ffffff;*/
    }

    .faq-container {
        max-width: 1400px;
        margin: auto;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .faq-subtitle {
        display: inline-block;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #bd7344;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 13px;
    }

    .faq-header h2 {
        font-size: 54px;
        font-weight: 700;
        color: #020e29;
        margin-bottom: 18px;
    }

    .faq-header p {
        max-width: 800px;
        margin: auto;
        color: #667085;
        font-size: 18px;
        line-height: 1.5;
    }
    /*==============================
        LAYOUT
==============================*/

    .faq-layout {
        display: grid;
        grid-template-columns: 1.5fr .7fr;
        gap: 10px;
        align-items: center;
        position: relative;
    }

    .floatingleaf {
        position: absolute;
        bottom: -129px;
        left: -75px;
        width: 18%;
    }
    /*==============================
        JOURNEY
==============================*/
    .faq-journey {
        position: relative;
        min-height: 500px;
    }
    /* SVG */

    .journey-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: visible;
    }

        .journey-svg path {
            fill: none;
            stroke: #d6c29a;
            stroke-width: 3;
            stroke-dasharray: 8 10;
            stroke-linecap: round;
        }
    /*==============================
        NODE
==============================*/

    .faq-node {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 18px;
        cursor: pointer;
        transition: .45s;
    }

    .node-circle {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        background: white;
        border: 2px solid #020e29;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #10233F;
        box-shadow: 0 10px 35px rgba(0,0,0,.08);
        transition: .4s;
    }

    .node-text {
        background: white;
        padding: 15px 20px;
        border-radius: 18px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        transition: .4s;
    }

        .node-text h4 {
            margin: 0;
            color: #10233F;
            font-size: 18px;
        }

        .node-text span {
            display: block;
            margin-top: 6px;
            color: #777;
            font-size: 14px;
        }
    /* Hover */

    .faq-node:hover {
        transform: translateY(-8px);
    }

        .faq-node:hover .node-circle {
            background: #020e29;
            color: white;
            transform: scale(1.08);
        }

        .faq-node:hover .node-text {
            transform: translateX(6px);
        }
    /* Active */

    .faq-node.active .node-circle {
        background: #020e29;
        color: white;
        box-shadow: 0 0 0 10px rgba(92, 112, 79, 0.15), 0 18px 40px rgba(26, 42, 24, 0.35);
    }
    /*==============================
        NODE POSITIONS
==============================*/

    .faq-node[data-index="0"] {
        left: 9%;
        top: 5%;
    }

    .faq-node[data-index="1"] {
        left: 13%;
        top: 43%;
    }

    .faq-node[data-index="2"] {
        left: 39%;
        top: 75%;
    }

    .faq-node[data-index="3"] {
        left: 57%;
        top: 37%;
    }

    .faq-node[data-index="4"] {
        right: 8%;
        top: 5%;
    }
    /*==============================
        CARD
==============================*/

    .faq-answer-card {
        background: rgba(255,255,255,.82);
        backdrop-filter: blur(22px);
        border: 1px solid rgba(255,255,255,.5);
        border-radius: 30px;
        padding: 25px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        position: relative;
    }

    .faq-card-icon {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        background: #020e29;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 30px;
        display: none;
    }

    .faq-card-label {
        color: #020e29;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 700;
    }

    .faq-answer-card h3 {
        margin: 7px 0;
        color: #10233F;
        font-size: 24px;
    }

    .faq-answer-card p {
        color: #666;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .faq-answer-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none;
    }

    .faq-answer-card li {
        padding: 12px 0;
        color: #10233F;
        border-bottom: 1px solid #eee;
    }
    /*==============================
        BACKGROUND GLOW
==============================*/

    .faq-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        /*    background: #f3ead8;*/
        filter: blur(120px);
        top: -180px;
        right: -180px;
        opacity: .45;
    }
    /*.faq-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #d8eefb;
    filter: blur(120px);
    left: -150px;
    bottom: -150px;
    opacity: .4;
}*/
    /*==============================
        RESPONSIVE
==============================*/

    @media(max-width:1100px) {

        .faq-layout {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .faq-answer-card {
            order: 2;
        }
    }
    /* Mobile */

    @media(max-width:768px) {

        .journey-svg {
            display: none;
        }

        .faq-journey {
            min-height: auto;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .faq-node {
            position: relative !important;
            left: auto !important;
            top: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none;
        }

        .faq-header h2 {
            font-size: 38px;
        }

        .faq-answer-card {
            padding: 28px;
        }

            .faq-answer-card h3 {
                font-size: 28px;
            }
    }

    .faq-answer-card {
        opacity: 1;
        transform: translateY(0);
        transition: .45s;
    }

        .faq-answer-card.show {
            animation: fadeCard .45s;
        }

    @keyframes fadeCard {

        from {
            opacity: 0;
            transform: translateY(25px) scale(.97);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .faq-node.active .node-circle::after {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 2px solid rgba(200,168,107,.4);
        animation: pulse 2s infinite;
    }

    .node-circle {
        position: relative;
    }

    @keyframes pulse {

        0% {
            transform: scale(1);
            opacity: 1;
        }

        100% {
            transform: scale(1.6);
            opacity: 0;
        }
    }

    .node-circle {
        transition: transform .35s, box-shadow .35s, background .35s;
    }

    .node-text {
        transition: .35s;
    }

    #journeyPath {
        fill: none;
        stroke: #d7d7d7;
        stroke-width: 4;
        stroke-dasharray: 8 10;
    }

    #journeyProgress {
        fill: none;
        stroke: #020e29;
        stroke-width: 5;
        stroke-linecap: round;
    }

    .journey-pin {
        position: absolute;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        /*    background: white;*/
        display: flex;
        align-items: center;
        justify-content: center;
        color: #020e29;
        font-size: 24px;
        /*    box-shadow: 0 15px 35px rgba(0,0,0,.18);*/
        transform: translate(-50%,-50%);
        transition: left .9s cubic-bezier(.22,.61,.36,1), top .9s cubic-bezier(.22,.61,.36,1);
        z-index: 20;
    }
    /********Destinations***************/
    .destinations-section {
        padding: 60px 0;
        background: #fff;
        overflow: hidden;
    }
.destination-item {
    position: relative;
    z-index: 1001;
}
    .destination-heading {
        text-align: center;
        margin-bottom: 70px;
    }

    .subtitle {
        color: #020e29;
        letter-spacing: 4px;
        font-size: 13px;
        font-weight: 700;
    }

    .destination-heading h2 {
        font-size: 54px;
        margin: 18px 0;
        color: #10233F;
    }

    .destination-heading p {
        max-width: 700px;
        margin: auto;
        color: #777;
    }

    .destination-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .destination-card {
        position: relative;
        /*    width: 340px;*/
        height: 220px;
        border-radius: 28px;
        overflow: hidden;
        cursor: pointer;
        opacity: 0;
        transform-origin: center;
        transition: transform .45s, box-shadow .45s;
    }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s;
        }

    .destination-overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 30px;
        background: linear-gradient( transparent, rgba(0,0,0,.75) );
    }

        .destination-overlay h3 {
            color: white;
            font-size: 28px;
            margin-bottom: 8px;
        }

        .destination-overlay span {
            color: white;
            opacity: .9;
        }

    .destination-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0,0,0,.18);
    }

        .destination-card:hover img {
            transform: scale(1.08);
        }

    @keyframes cardFloat {

        0%,100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @media (max-width: 992px) {

        .destination-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }
    }
    /* ================================
   MOBILE
================================ */

    @media (max-width: 768px) {

        .destination-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
    /* ================================
   SMALL MOBILE
================================ */

    @media (max-width: 480px) {

        .destination-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
    }

    .destination-card.floating {
        animation-name: cardFloat;
        animation-duration: var(--duration);
        animation-delay: var(--delay);
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }

    .destination-card:hover {
        animation-play-state: paused;
    }
    /*=========================================
            PROPERTY SECTION
=========================================*/
    /*.property-section {
    background: #f8f9fb;
}

    .property-section h2 {
        color: #10233F;
    }

    .property-section .text-secondary {
        color: #020e29  !important;
        letter-spacing: 3px;
    }
*/
    /*=========================================
            FILTER CARD
=========================================*/

    .filter-card {
        position: sticky;
        top: 110px;
        background: #fff;
        border-radius: 22px;
        padding: 28px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

        .filter-card h4 {
            color: #10233F;
            margin-bottom: 25px;
        }

        .filter-card .form-label {
            color: #10233F;
            font-size: .92rem;
        }

        .filter-card .form-select,
        .filter-card .form-control {
            height: 52px;
            border-radius: 12px;
            border: 1px solid #e5e5e5;
            box-shadow: none;
        }

            .filter-card .form-select:focus,
            .filter-card .form-control:focus {
                border-color: #020e29;
                box-shadow: 0 0 0 .15rem rgba(200,168,107,.15);
            }

    .form-range::-webkit-slider-thumb {
        background: #020e29;
    }

    .form-check-input:checked {
        background: #020e29;
        border-color: #020e29;
    }
    /*=========================================
            PROPERTY CARD
=========================================*/

    .property-card {
        background: #fff;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        transition: .35s;
        position: relative;
    }

        .property-card:hover {
            transform: translateY(-8px);
        }
    /*=========================================
            IMAGE
=========================================*/

    .property-image {
        height: 100%;
        min-height: 200px;
        object-fit: fill;
        transition: transform .8s;
    }

    .property-card:hover .property-image {
        transform: scale(1.08);
    }
    /*=========================================
            TITLE
=========================================*/

    .property-card h5 {
        color: #020e29;
    }

    .property-card p {
        color: #101010;
        font-size: 14px;
    }

    .property-card span {
        line-height: 1.2;
    }

    .price {
        color: #020e29;
        font-size: 24px;
    }

    .bi-geo-alt-fill {
        color: #020e29;
    }
    /*=========================================
            BADGES
=========================================*/
    .property-card .badge {
        border-radius: 30px;
        font-weight: 500;
        padding: 8px 14px;
    }

    .badge.bg-warning {
        background: #020e29 !important;
        color: #fff !important;
    }

    .badge.text-bg-light {
        background: #F6F6F6 !important;
        color: #555;
    }
    /*=========================================
            PRICE
=========================================*/

    .property-card small {
        letter-spacing: 0.5px;
    }

    .property-card h3:last-child {
        color: #10233F;
    }
    /*=========================================
            BUTTON
=========================================*/

    .property-card .btn {
        background: #020e29;
        border: none;
        border-radius: 8px;
        padding: 12px 26px;
        transition: .35s;
        font-size: 14px;
    }

        .property-card .btn:hover {
            background: #020e29;
            color: #fff;
        }

    .detailsinli {
        font-size: 14px;
        line-height: 1.3;
    }
    /*=========================================
            MOBILE
=========================================*/
    @media(max-width:991px) {

        .filter-card {
            position: static;
        }
    }

    @media(max-width:768px) {

        .property-image {
            min-height: 240px;
        }

        .property-card .p-4 {
            padding: 1.4rem !important;
        }

        .property-card h3 {
            font-size: 1.45rem;
        }
    }
    /*listing page***********************/
    .searchdiv .hero-search {
        position: relative;
        padding-top: 22px;
        bottom: 12px;
    }

    .searchdiv .search-box {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }

    .searchdiv {
        border-bottom: 1px solid #cdcdcd;
           z-index: 1000;
    }
    /*************** details Page **************/
    .hotel-gallery {
        padding: 90px 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 200px 200px;
        gap: 12px;
    }

    .gallery-main {
        grid-row: 1 / span 2;
        overflow: hidden;
        border-radius: 22px;
        position: relative;
    }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity .35s, transform .6s;
        }

    .gallery-thumb {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border-radius: 18px;
        transition: .35s;
    }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .gallery-thumb::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,.12);
            transition: .35s;
        }

        .gallery-thumb:hover::after {
            background: rgba(0,0,0,0);
        }

        .gallery-thumb.active {
            outline: 2px solid #020e29;
        }

        .gallery-thumb:hover img {
            transform: scale(1.08);
        }

    .gallery-main:hover img {
        transform: scale(1.05);
    }

    .gallery-count {
        position: absolute;
        right: 20px;
        bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 22px;
        border: none;
        border-radius: 40px;
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(12px);
        color: #10233F;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: .35s;
        box-shadow: 0 12px 30px rgba(0,0,0,.15);
    }

        .gallery-count:hover {
            background: #020e29;
            color: white;
            transform: translateY(-3px);
        }


    @media(max-width:992px) {

        .gallery-grid {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 350px repeat(2,180px);
        }

        .gallery-main {
            grid-column: 1 / span 2;
            grid-row: auto;
        }
    }

    @media(max-width:576px) {

        .gallery-grid {
            display: flex;
            flex-direction: column;
        }

        .gallery-main {
            height: 320px;
        }

        .gallery-thumb {
            height: 170px;
        }
    }

    .hotel-type {
        display: inline-block;
        background: #020e29;
        color: #fff;
        padding: 6px 10px;
        border-radius: 40px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .hotel-name {
        font-size: 32px;
        font-weight: 400;
        color: #1a2a18;
        margin-bottom: 5px;
    }

    .hotel-location {
        display: flex;
        align-items: center;
        color: #000;
        font-size: 15px;
        gap: 7px;
    }

        .hotel-location i {
            color: #020e29;
        }

    .hotel-highlights {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 24px;
    }

        .hotel-highlights span {
            background: #F8F8F8;
            border: 1px solid #ECECEC;
            padding: 10px 18px;
            border-radius: 30px;
            color: #10233F;
            font-size: 14px;
            font-weight: 500;
        }

    .hotel-info {
        background: #fff;
    }

    .info-card {
        background: #fff;
        border-radius: 22px;
        padding: 25px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    .section-tag {
        display: inline-block;
        color: #020e29;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0px;
    }


    .info-card p {
        color: #666;
        line-height: 1.5;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .amenities-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 10px;
    }

        .amenities-list div {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 14px;
            font-size: 14px;
            background: linear-gradient( 90deg, rgba(213, 214, 201, 0.75), rgba(213, 214, 201, 0.45), rgba(213, 214, 201, 0.75) );
            transition: .3s;
        }

            .amenities-list div:hover {
                transform: translateX(6px);
            }

        .amenities-list i {
            color: #020e29;
        }

    @media (max-width:768px) {

        .hotel-name {
            font-size: 38px;
        }

        .hotel-location {
            font-size: 15px;
        }
    }

    .features-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 10px;
    }

    .feature-row {
        padding: 7px 15px;
        border: 1px solid #ECE7DF;
        border-radius: 14px;
        background: linear-gradient( 90deg, rgba(213, 214, 201, 0.75), rgba(213, 214, 201, 0.45), rgba(213, 214, 201, 0.75) );
        color: #10233F;
        line-height: 1.8;
        transition: .3s;
        font-size: 14px;
    }

        .feature-row:hover {
            border-color: #020e29;
            transform: translateX(6px);
        }

    .rooms-section {
        background: #fff;
    }

    .room-card {
        border-radius: 24px;
        overflow: hidden;
        transition: .35s;
        box-shadow: 0 12px 35px rgba(0,0,0,.05);
        position: relative;
    }

        .room-card:hover {
            transform: translateY(-8px);
            box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        }

    .discount-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 13px;
        color: #fff;
        background: #020e29;
        padding: 7px 10px;
        border-radius: 16px;
    }

    .room-image {
        overflow: hidden;
        cursor: pointer;
    }

        .room-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: .6s;
        }

    .room-card:hover img {
        transform: scale(1.08);
    }

    .room-card .card-body {
        padding: 15px;
    }

    .room-title {
        font-size: 16px;
        color: #020e29;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 0px;
    }

    .room-price {
        font-size: 24px;
        font-weight: 700;
        color: #020e29;
        margin-bottom: 28px;
    }

        .room-price span {
            font-size: 15px;
            color: #777;
            font-weight: 500;
        }

    .btn-room {
        width: 100%;
        border-radius: 50px;
        padding: 10px;
        background: #020e29;
        color: #fff;
        font-weight: 600;
        transition: .35s;
    }

    .finalbookingbtn, .finalbookingbtn:hover {
        border-radius: 14px;
        padding: 10px;
        background: #020e29;
        color: #fff;
        font-weight: 600;
        transition: .35s;
    }

    .btn-room:hover, .btn-room:active {
        background: #020e29;
        color: #fff;
    }

    @media(max-width:991px) {

        .room-image img {
            height: 240px;
        }
    }

    @media(max-width:767px) {

        .room-image img {
            height: 220px;
        }
    }

    @media (min-width: 1200px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl {
            max-width: 1280px;
        }
    }

    @media (min-width: 1500px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl {
            max-width: 1400px;
        }
    }
    /*validation modal*/
    .validation-modal {
        border: none;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,.18);
    }

    .validation-title {
        font-size: 24px;
        font-weight: 700;
        color: #111827;
    }

    .validation-message {
        color: #4B5563;
        font-size: 15px;
        line-height: 1.7;
        padding: 0 12px;
    }

    .validation-btn {
        min-width: 130px;
        height: 48px;
        border: none;
        border-radius: 999px;
        background: #020e29;
        color: #fff;
        font-weight: 700;
        letter-spacing: .5px;
        transition: .3s;
    }

        .validation-btn:hover {
            background: #020e29;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(221,184,122,.35);
        }

        .validation-btn:focus {
            box-shadow: none;
        }

    #validationModal .modal-dialog, #formvalidationModal .modal-dialog {
        max-width: 420px;
    }

    #validationModal .modal-body {
        padding: 30px;
    }

    .active > .page-link, .page-link.active {
        background-color: #020e29 !important;
        color: #fff !important;
        border: 1px solid #020e29 !important;
    }

    .page-link:focus {
        box-shadow: none !important;
    }

    .page-link {
        color: #020e29 !important;
    }
    /*Blog Section*/


    .section-badge {
        background: #0E7490;
        color: #fff;
        padding: 8px 18px;
        border-radius: 30px;
        font-weight: 600;
    }

    .scrap-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        position: relative;
        transition: .45s;
        cursor: pointer;
        position: relative;
    }

        .scrap-card img {
            width: 100%;
            height: 200px;
            object-fit: fill;
            transition: .6s;
        }

        .scrap-card:hover img {
            transform: scale(1.08);
        }

    .rotate-left {
        transform: rotate(-4deg);
    }

    .rotate-right {
        transform: rotate(3deg);
        margin-top: 40px;
    }

    .rotate-small {
        transform: rotate(-2deg);
    }

    .pin {
        width: 18px;
        height: 18px;
        background: #0E7490;
        border-radius: 50%;
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 5;
        box-shadow: 0 5px 15px rgba(0,0,0,.25);
        animation: floatPin 2.5s infinite ease-in-out;
    }

        .pin.gold {
            background: #bd7344;
        }

        .pin.blue {
            background: #2F1164;
        }

    .scrap-body {
        padding: 15px;
    }

        .scrap-body h4 {
            color: #1a2a18;
        }

    .tag {
        display: inline-block;
        padding: 5px 14px;
        border-radius: 20px;
        color: #fff;
        font-size: 13px;
        margin-bottom: 18px;
        display: none;
    }

    .family {
        background: #0E7490;
    }

    .honeymoon {
        background: #bd7344;
    }

    .tips {
        background: #2F1164;
    }

    .meta {
        display: flex;
        justify-content: space-between;
        color: #020e29;
        margin-top: 20px;
        font-size: 14px;
    }

        .meta span {
            display: none;
        }

    @keyframes floatPin {

        0%,100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .pin {
        position: absolute;
        top: 8px;
        right: 27px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        z-index: 5;
        box-shadow: 0 3px 8px rgba(0,0,0,.25), inset 0 -3px 5px rgba(0,0,0,.18), inset 0 2px 3px rgba(255,255,255,.5);
        filter: drop-shadow(2px 5px 6px rgba(0,0,0,.25));
        animation: none;
    }
        /* Needle */
        .pin::before {
            content: "";
            position: absolute;
            width: 2px;
            height: 20px;
            background: #8d8d8d;
            left: 50%;
            top: 16px;
            transform: translateX(-50%) rotate(15deg);
            transform-origin: top;
            border-radius: 2px;
        }
        /* Highlight */
        .pin::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,.55);
            top: 4px;
            left: 5px;
        }

        .pin.teal {
            background: linear-gradient(#1bb5c8,#0d7c92);
        }

        .pin.gold {
            background: linear-gradient(#ffd95c,#d6a300);
        }

        .pin.purple {
            background: linear-gradient(#7b46d4,#4d2aa8);
        }

    .rotate-left .pin {
        transform: rotate(-18deg);
    }

    .rotate-right .pin {
        transform: rotate(12deg);
    }

    .rotate-small .pin {
        transform: rotate(-8deg);
    }

    .header-contact .bi-telephone-fill {
        color: #020e29;
        font-size: 20px;
    }

    .header-contact a {
        color: #020e29;
        font-size: 20px;
    }

    .scrap-cardmain {
        position: relative;
        width: 30%;
    }

        .scrap-cardmain .bpinimgo {
            position: absolute;
            z-index: 99;
            width: 10%;
            top: -31px;
            right: 32px;
            transform: rotate(-12deg);
        }

        .scrap-cardmain .bpinimgt {
            position: absolute;
            z-index: 99;
            width: 10%;
            top: 24px;
            right: 82px;
            transform: rotate(-12deg);
        }

        .scrap-cardmain .bpinimgth {
            position: absolute;
            z-index: 99;
            width: 10%;
            top: -31px;
            right: 32px;
            transform: rotate(-12deg);
        }
    /*==================================================
INCLUSIVE HOLIDAY STAYS
Premium Video Hero CSS
==================================================*/
    :root {
        --gold: #bd7344;
        --gold-light: #F7D774;
        --white: #ffffff;
        --dark: #07111f;
        --glass: rgba(255,255,255,.12);
    }
    /*==================================================
VIDEO HERO
==================================================*/


    .video-hero {
        position: relative;
        height: 90vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /*==================================================
VIDEO LAYER
==================================================*/


    .video-container {
        position: absolute;
        inset: 0;
        z-index: 1;
    }



    .hero-video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1.5s ease;
    }



        .hero-video.active-video {
            opacity: 1;
        }
    /*==================================================
VIDEO OVERLAY
==================================================*/


    .video-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        /*    background: linear-gradient( 90deg, rgba(0,0,0,.75), rgba(0,0,0,.45), rgba(0,0,0,.75) );*/
        background: linear-gradient( 90deg, rgba(213, 214, 201, 0.75), rgba(213, 214, 201, 0.45), rgba(213, 214, 201, 0.75) );
        ;
    }
    /*==================================================
CONTENT
==================================================*/


    .hero-content {
        position: relative;
        z-index: 5;
        width: 90%;
        max-width: 1200px;
        color: white;
        text-align: center;
    }




    .step-counter {
        display: inline-block;
        padding: 10px 25px;
        border-radius: 50px;
        background: rgba(255,255,255,.15);
        backdrop-filter: blur(15px);
        border: 1px solid #020e29;
        letter-spacing: 3px;
        font-size: 14px;
        margin-bottom: 35px;
        color: #bd7344;
        font-weight: 600;
    }




    #stepNumber {
        color: #000;
        font-weight: 800;
    }
    /*==================================================
SLIDES
==================================================*/


    .hero-slide {
        display: none;
        animation: slideUp .8s ease;
    }



    .active-slide {
        display: block;
    }



    @keyframes slideUp {


        from {
            opacity: 0;
            transform: translateY(50px);
        }


        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /*==================================================
HEADLINES
==================================================*/


    .hero-slide h1 {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 30px;
        /*    text-shadow: 0 10px 40px rgba(0,0,0,.5);*/
        color: #020e29;
    }




    .hero-slide p {
        font-size: 22px;
        line-height: 1.8;
        max-width: 900px;
        margin: auto auto 40px;
        color: #1a2a18;
    }
    /*==================================================
BUTTONS
==================================================*/


    .hero-slide button {
        border: none;
        padding: 18px 50px;
        border-radius: 50px;
        background: linear-gradient(135deg, #020e29, #294d7a);
        font-size: 17px;
        font-weight: 700;
        cursor: pointer;
        color: #fff;
        /*    box-shadow: 0 20px 50px rgba(212,175,55,.35);*/
        transition: .4s;
    }



        .hero-slide button:hover {
            transform: translateY(-8px);
            /*        box-shadow: 0 30px 70px rgba(212,175,55,.55);*/
        }
    /*==================================================
FEATURE LIST STEP 2
==================================================*/


    .feature-list {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 20px;
        max-width: 1000px;
        margin: auto;
    }



        .feature-list div {
            background: rgba(255,255,255,.12);
            backdrop-filter: blur(15px);
            padding: 20px;
            border-radius: 20px;
            /*        border: 1px solid rgba(255,255,255,.2);*/
            border: 1px solid #020e29;
            font-size: 18px;
            color: #020e29;
        }
    /*==================================================
SEARCH STATUS STEP 3
==================================================*/


    .search-status {
        max-width: 650px;
        margin: auto;
    }



        .search-status p {
            background: rgba(255,255,255,.12);
            /*        border: 1px solid rgba(255,255,255,.2);*/
            border: 1px solid #020e29;
            padding: 10px 30px;
            border-radius: 50px;
            margin: 10px;
            backdrop-filter: blur(15px);
            animation: statusGlow 2s infinite;
        }



    @keyframes statusGlow {


        0%,100% {
            transform: scale(1);
        }


        50% {
            transform: scale(1.03);
        }
    }
    /*==================================================
PROPERTY FLOW STEP 4
==================================================*/


    .property-flow {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }



        .property-flow span {
            background: rgba(255,255,255,.12);
            /*        border: 1px solid rgba(255,255,255,.25);*/
            border: 1px solid #020e29;
            padding: 18px 25px;
            border-radius: 50px;
            backdrop-filter: blur(15px);
            color: #020e29;
        }
    /*==================================================
CONFIRMATION STEP 5
==================================================*/


    .confirmation {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
        max-width: 700px;
        margin: auto;
    }



        .confirmation div {
            background: rgba(255,255,255,.15);
            padding: 22px;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid #1a2a18;
            border-left: 4px solid #1a2a18;
            font-size: 18px;
            color: #1a2a18;
        }
    /*==================================================
FINAL CTA STEP 6
==================================================*/


    .hero-slide h2 {
        font-size: 40px;
        margin: 35px 0;
        color: #1a2a18;
    }



    .hero-slide strong {
        color: #bd7344;
        font-size: 70px;
    }
    /*==================================================
BRAND
==================================================*/


    .brand-name {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        color: white;
        font-size: 32px;
        font-weight: 800;
        letter-spacing: 2px;
        text-shadow: 0 5px 25px black;
    }
    /*==================================================
RESPONSIVE
==================================================*/


    @media(max-width:1000px) {



        .hero-slide h1 {
            font-size: 48px;
        }



        .feature-list {
            grid-template-columns: repeat(2,1fr);
        }
    }




    @media(max-width:700px) {

        .feature-list div {
            padding: 10px;
        }

        .hero-slide h1 {
            font-size: 32px;
        }

        .property-flow span {
            width: 100%;
        }

        .hero-slide p {
            font-size: 16px;
        }



        .feature-list {
            grid-template-columns: 1fr;
        }



        .confirmation {
            grid-template-columns: 1fr;
        }



        .hero-slide h2 {
            font-size: 28px;
        }



        .hero-slide strong {
            font-size: 45px;
        }



        .brand-name {
            font-size: 22px;
            bottom: 25px;
        }



        .hero-slide button {
            padding: 15px 35px;
        }
    }
    /*contact section*/
    /*==================================================
LUXURY CTA
==================================================*/

    .luxury-cta {
        position: relative;
        overflow: hidden;
        padding: 55px 0px;
        /*    background: #0B1F3A;*/
        background-image: url('../images/greenbg.webp');
        color: #fff;
        isolation: isolate;
    }

        .luxury-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(2, 14, 41, 0.72);
            z-index: 1;
        }
    /*==================================================
CONTAINER
==================================================*/

    .luxury-content {
        position: relative;
        z-index: 5;
        max-width: 1000px;
        margin: auto;
    }
    /*==================================================
BADGE
==================================================*/

    .luxury-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 24px;
        border-radius: 40px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        backdrop-filter: blur(10px);
        color: #F7D774;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    /*==================================================
HEADING
==================================================*/

    .luxury-content h2 {
        font-size: 50px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 17px;
    }

        .luxury-content h2 span {
            color: #bd7344;
        }
    /*==================================================
DESCRIPTION
==================================================*/

    .luxury-content p {
        margin: 0 auto 20px;
        color: #dbe5ef;
        font-size: 14px;
        line-height: 1.2;
    }
    /*==================================================
PALM LEAVES
==================================================*/
    /*.palm-left,
.palm-right {
    position: absolute;
    top: 0;
    width: 340px;
    height: 100%;
    opacity: .05;
    pointer-events: none;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.palm-left {
    left: -80px;
    background-image: url('/assets/images/palm-left.png');
    background-position: left top;
}

.palm-right {
    right: -80px;
    background-image: url('/assets/images/palm-right.png');
    background-position: right top;
}
*/
    /*==================================================
PARTICLES
==================================================*/

    .gold-particles {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image: radial-gradient(circle,#bd7344 2px,transparent 2px), radial-gradient(circle,#F7D774 1.5px,transparent 2px), radial-gradient(circle,#ffffff 1px,transparent 2px);
        background-size: 240px 240px, 180px 180px, 320px 320px;
        animation: particleMove 30s linear infinite;
        opacity: .18;
    }

    @keyframes particleMove {

        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-120px);
        }
    }
    /*==================================================
WAVE WRAPPER
==================================================*/

    .wave-wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 2;
    }
    /*==================================================
SVG
==================================================*/

    .gold-wave {
        display: block;
        width: 100%;
        height: 220px;
    }
    /*==================================================
FEATURES
==================================================*/

    .feature-wrapper {
        margin-bottom: 40px;
    }

    .feature-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 5px 26px;
        height: 100%;
        border-radius: 22px;
        background: rgba(255,255,255,.08);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(255,255,255,.12);
        transition: .45s;
        overflow: hidden;
    }

        .feature-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,.10), transparent);
            opacity: 0;
            transition: .45s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212,175,55,.45);
            box-shadow: 0 25px 50px rgba(0,0,0,.28);
        }

            .feature-card:hover::before {
                opacity: 1;
            }

    .feature-icon {
        width: 40px;
        height: 40px;
        flex: none;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #bd7344;
        background: rgba(212,175,55,.12);
    }

    .feature-card h5 {
        margin: 0;
        color: #fff;
        font-weight: 700;
        font-size: 20px;
    }

    .feature-card span {
        color: #c8d5e2;
        font-size: 15px;
    }
    /*==================================================
BUTTONS
==================================================*/

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .btn-call {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #111;
        background: linear-gradient(135deg,#F7D774,#bd7344 );
        padding: 16px 38px;
        border-radius: 50px;
        font-weight: 700;
        transition: .35s;
    }

        .btn-call:hover {
            transform: translateY(-4px);
            color: #111;
            box-shadow: 0 15px 35px rgba(212,175,55,.45);
        }

    .btn-callback {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #fff;
        border: 1px solid rgba(255,255,255,.20);
        background: rgba(255,255,255,.08);
        backdrop-filter: blur(14px);
        padding: 16px 38px;
        border-radius: 50px;
        transition: .35s;
    }

        .btn-callback:hover {
            color: #fff;
            transform: translateY(-4px);
            border-color: #bd7344;
        }
    /*==================================================
TRUST ROW
==================================================*/

    .trust-row {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        color: #d9e2eb;
        font-size: 15px;
        margin-bottom: 20px;
    }

        .trust-row div {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trust-row i {
            color: #bd7344;
        }
    /*==================================================
WAVE
==================================================*/

    #wave1 {
        transform-origin: center;
    }
    /*==================================================
RESPONSIVE
==================================================*/

    @media(max-width:991px) {

        .luxury-content h2 {
            font-size: 42px;
        }

        .luxury-content p {
            font-size: 18px;
        }
    }

    @media(max-width:767px) {

        .luxury-cta {
            padding: 70px 0 140px;
        }

        .luxury-content h2 {
            font-size: 32px;
        }

        .luxury-content p {
            font-size: 16px;
            margin-bottom: 40px;
        }

        .feature-card {
            padding: 20px;
        }

        .feature-icon {
            width: 55px;
            height: 55px;
            font-size: 22px;
        }

        .feature-card h5 {
            font-size: 17px;
        }

        .btn-call,
        .btn-callback {
            width: 100%;
            justify-content: center;
        }

        .gold-wave {
            height: 150px;
        }
    }
    /*.bi::before, [class*=" bi-"]::before, [class^=bi-]::before{
    vertical-align:top;
}*/

    .header-contact .bi-telephone-fill {
        padding-top: 6px;
    }

    .property-modal-trigger {
        cursor: pointer;
    }

    .meta .bi {
        color: #020e29;
        padding-right: 3px;
    }
    /*==================================================
ROOM BOOKING MODAL
==================================================*/

    .room-booking-modal {
        border: none;
        border-radius: 28px;
        overflow: hidden;
        background: linear-gradient(180deg,#ffffff,#fcfbf8);
        box-shadow: 0 35px 80px rgba(16,35,63,.22);
    }

        .room-booking-modal .modal-body {
            padding: 15px;
            text-align: center;
            position: relative;
        }
    /* Close */

    .modal-close {
        position: absolute;
        right: 18px;
        top: 18px;
        z-index: 5;
        border: none;
        opacity: .55;
        transition: .3s;
    }

        .modal-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
    /* Icon */

    .concierge-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 6px;
        border-radius: 50%;
        background: linear-gradient(135deg,#10233F,#1f4573);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 35px rgba(16,35,63,.18);
    }

        .concierge-icon i {
            color: #fff;
            font-size: 30px;
            padding-top: 5px;
        }
    /* Badge */

    .concierge-badge {
        display: inline-block;
        padding: 7px 18px;
        border-radius: 40px;
        background: #F8F5EE;
        color: #020e29;
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }
    /* Heading */

    .concierge-title {
        color: #020e29;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 15px;
    }
    /* Description */

    .concierge-description {
        color: #667085;
        line-height: 1.2;
        font-size: 14px;
        max-width: 520px;
    }
    /* Contact Card */

    .contact-card {
        background: #FAF8F2;
        border: 1px solid #ECE6D8;
        border-radius: 22px;
        padding: 20px;
        margin-bottom: 15px;
    }

    .contact-label {
        display: block;
        color: #A4A4A4;
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .contact-number {
        color: #020e29;
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .availability {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #EAF9EE;
        color: #1C8C4B;
        padding: 8px 18px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 14px;
    }

        .availability i {
            font-size: 8px;
        }
    /* Buttons */

    .modal-actions {
        display: flex;
        gap: 18px;
        justify-content: space-between;
    }

    .btn-continue,
    .btn-call-concierge {
        padding: 10px 30px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 16px;
        transition: .35s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-continue {
        background: #020e29;
        color: #fff;
        border: none;
    }

        .btn-continue:hover {
            background: #020e29;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(16,35,63,.25);
        }

    .btn-call-concierge {
        background: #020e29;
        color: #fff;
        gap: 10px;
    }

        .btn-call-concierge:hover {
            background: #B79457;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(200,168,107,.30);
        }
    /* Responsive */

    @media (max-width:768px) {
        .modal-actions {
            flex-wrap: wrap
        }

        .room-booking-modal .modal-body {
            padding: 35px 24px;
        }

        .concierge-title {
            font-size: 28px;
        }

        .contact-number {
            font-size: 20px;
        }

        .btn-continue,
        .btn-call-concierge {
            width: 100%;
            min-width: auto;
        }
    }
    /*==================================================
BOOKING FORM MODAL
==================================================*/

    .booking-modal {
        border: none;
        border-radius: 30px;
        overflow: hidden;
        background: linear-gradient(180deg,#ffffff,#fcfbf8);
        box-shadow: 0 40px 90px rgba(16,35,63,.18);
    }

        .booking-modal .modal-body {
            padding: 45px;
        }
    /* Left Side */

    .booking-badge {
        display: inline-block;
        padding: 7px 18px;
        border-radius: 40px;
        background: #F8F5EE;
        color: #020e29;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 7px;
    }

    .booking-title {
        color: #10233F;
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .booking-subtitle {
        color: #667085;
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    /* Form Labels */

    .booking-modal label {
        display: block;
        margin-bottom: 8px;
        color: #10233F;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }
    /* Inputs */

    .booking-modal .form-control {
        height: 40px;
        border-radius: 15px;
        border: 1px solid #D7DDE7;
        background: #FAFBFD;
        color: #10233F;
        font-size: 15px;
        padding: 0 18px;
        transition: .3s;
        box-shadow: none;
    }

    .booking-modal textarea.form-control {
        min-height: 85px;
        resize: none;
        padding-top: 15px;
    }

    .booking-modal .form-control::placeholder {
        color: #9AA5B1;
    }

    .booking-modal .form-control:focus {
        border-color: #020e29;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(200,168,107,.15);
    }
    /* Right Side */

    .booking-summary {
        background: #FAF8F2;
        border: 1px solid #ECE6D8;
        border-radius: 24px;
        padding: 28px;
        position: sticky;
        top: 20px;
    }

    .summary-title {
        display: block;
        color: #10233F;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .booking-summary hr {
        margin: 18px 0;
        opacity: .15;
    }
    /*==========================================
BOOKING SUMMARY
==========================================*/

    .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 18px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(16,35,63,.08);
    }

        .summary-row:last-of-type {
            border-bottom: none;
        }

        .summary-row span {
            color: #8A93A6;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            flex-shrink: 0;
        }

        .summary-row strong {
            color: #10233F;
            font-size: 16px;
            font-weight: 700;
            text-align: right;
        }

    .summary-price {
        margin-top: 10px;
        padding-top: 18px;
    }

        .summary-price span {
            color: #10233F;
        }

        .summary-price strong {
            color: #020e29;
            font-size: 28px;
            font-weight: 800;
        }
    /*==========================================
SUBMIT BUTTON
==========================================*/

    .btn-submit-booking {
        width: 100%;
        margin-top: 20px;
        height: 45px;
        border: none;
        border-radius: 16px;
        background: #020e29;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        transition: .35s;
        box-shadow: 0 18px 40px rgba(16,35,63,.22);
    }

        .btn-submit-booking:hover {
            background: #020e29;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 22px 45px rgba(200,168,107,.30);
        }
    /*==========================================
CUSTOM SCROLLBAR
==========================================*/

    .booking-modal textarea::-webkit-scrollbar {
        width: 8px;
    }

    .booking-modal textarea::-webkit-scrollbar-thumb {
        background: #020e29;
        border-radius: 20px;
    }

    .booking-modal textarea::-webkit-scrollbar-track {
        background: #F3F4F6;
    }
    /*==========================================
RESPONSIVE
==========================================*/

    @media (max-width:991px) {

        .booking-modal .modal-body {
            padding: 28px;
        }

        .booking-title {
            font-size: 30px;
        }

        .booking-summary {
            margin-top: 35px;
            position: static;
        }
    }

    @media (max-width:767px) {

        .booking-modal .modal-body {
            padding: 20px;
        }

        .booking-title {
            font-size: 26px;
        }

        .booking-subtitle {
            font-size: 15px;
        }

        .summary-row {
            flex-direction: column;
            gap: 4px;
        }

            .summary-row strong {
                text-align: left;
            }

        .summary-price strong {
            font-size: 24px;
        }

        .btn-submit-booking {
            height: 54px;
            font-size: 15px;
        }
    }

    .listinggeo:before {
        vertical-align: baseline !important;
    }

    .call-link {
        display: inline-block;
        text-decoration: none;
        color: inherit;
        transition: transform .3s ease;
        margin-bottom: 10px;
    }

    .contact-number {
        margin: 0;
        display: inline-block;
        animation: callBounce 1.8s ease-in-out infinite;
        transform-origin: center;
        cursor: pointer;
    }

    .call-link:hover .contact-number {
        animation-play-state: paused;
        transform: scale(1.08);
        color: #020e29;
    }

    @keyframes callBounce {

        0%, 100% {
            transform: translateY(0);
        }

        20% {
            transform: translateY(-5px);
        }

        40% {
            transform: translateY(0);
        }

        60% {
            transform: translateY(-3px);
        }

        80% {
            transform: translateY(0);
        }
    }
    /*loader*/
    /*#pageLoader {
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 999999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .6s ease;
        display: none;
    }

        #pageLoader.hide {
            opacity: 0;
            visibility: hidden;
        }

    .loader-content {
        text-align: center;
    }

    .mountains {
        position: relative;
        width: 220px;
        height: 140px;
        margin: auto;
    }

    .sun {
        position: absolute;
        width: 34px;
        height: 34px;
        background: #ddb87a;
        border-radius: 50%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 48px;
        animation: sunrise 2.2s ease-in-out infinite alternate;
        box-shadow: 0 0 25px rgba(221,184,122,.5);
    }

    .mountain {
        position: absolute;
        bottom: 0;
        width: 0;
        height: 0;
        border-left: 55px solid transparent;
        border-right: 55px solid transparent;
        border-bottom: 95px solid #232323;
    }

    .mountain-left {
        left: 0;
        animation: floatMountain 2.5s ease-in-out infinite;
    }

    .mountain-center {
        left: 55px;
        border-left-width: 65px;
        border-right-width: 65px;
        border-bottom-width: 115px;
        z-index: 2;
        animation: floatMountain 2.5s ease-in-out .2s infinite;
    }

    .mountain-right {
        right: 0;
        animation: floatMountain 2.5s ease-in-out .4s infinite;
    }

    .loader-title {
        margin-top: 28px;
        font-family: 'Montserrat',sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #232323;
    }

    .loader-text {
        color: #666;
        margin-top: 8px;
        margin-bottom: 25px;
        font-size: 15px;
    }

    .loading-bar {
        width: 240px;
        height: 6px;
        background: #ececec;
        border-radius: 20px;
        overflow: hidden;
        margin: auto;
    }

    .loading-progress {
        width: 0%;
        height: 100%;
        background: #020e29;
        animation: loadingLoop 5s linear infinite;
    }

    @keyframes loadingLoop {

        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    @keyframes sunrise {

        from {
            transform: translateX(-50%) translateY(15px);
        }

        to {
            transform: translateX(-50%) translateY(-22px);
        }
    }

    @keyframes floatMountain {

        0%,100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-4px);
        }
    }

    @keyframes loadingBar {

        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }*/

/* ============================================================
   HOTEL SEARCH LOADER
   ============================================================ */

#pageLoader {
    position: fixed;
    inset: 0;
    background: #faf8f4;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease, visibility .5s ease;
}

    #pageLoader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-content {
    width: 100%;
    max-width: 900px;
    padding: 30px 20px;
    text-align: center;
}


/* ------------------------------------------------------------
   HOTEL SEARCH AREA
------------------------------------------------------------ */

.hotel-search-loader {
    position: relative;
    height: 360px;
    width: 100%;
    max-width: 700px;
    margin: 45px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ------------------------------------------------------------
   HOTEL CARDS
------------------------------------------------------------ */

.hotel-loader-card {
    position: absolute;
    width: 210px;
    height: 300px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dfe4ec;
    box-shadow: 0 12px 35px rgba(2, 14, 41, .08);
    padding: 16px;
    overflow: hidden;
}

    .hotel-loader-card.left {
        left: 40px;
        opacity: .45;
        transform: scale(.88);
    }

    .hotel-loader-card.right {
        right: 40px;
        opacity: .45;
        transform: scale(.88);
    }

    .hotel-loader-card.center {
        z-index: 3;
        width: 250px;
        height: 330px;
        opacity: 1;
        box-shadow: 0 20px 50px rgba(2, 14, 41, .14);
    }


/* ------------------------------------------------------------
   HOTEL IMAGE PLACEHOLDER
------------------------------------------------------------ */

.hotel-image {
    width: 100%;
    height: 145px;
    border-radius: 12px;
    background: linear-gradient( 135deg, #edf1f7, #dce3ed );
    position: relative;
    overflow: hidden;
}

.center .hotel-image {
    height: 165px;
    background: linear-gradient( 135deg, #e3e9f2, #c5d0df );
}


/* Simple hotel illustration */

.hotel-building {
    position: absolute;
    width: 75px;
    height: 80px;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    background: #f8f9fb;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 5px 15px rgba(2,14,41,.10);
}

    .hotel-building::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 12px;
        left: 50%;
        top: -8px;
        transform: translateX(-50%);
        background: #020e29;
        border-radius: 3px;
    }

    .hotel-building::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 18px;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        background: #aebbd0;
    }


/* Windows */

.hotel-window {
    position: absolute;
    width: 9px;
    height: 12px;
    background: #71839d;
    border-radius: 2px;
}

    .hotel-window.w1 {
        left: 14px;
        top: 18px;
    }

    .hotel-window.w2 {
        right: 14px;
        top: 18px;
    }

    .hotel-window.w3 {
        left: 14px;
        top: 42px;
    }

    .hotel-window.w4 {
        right: 14px;
        top: 42px;
    }


/* ------------------------------------------------------------
   CARD DETAILS
------------------------------------------------------------ */

.hotel-stars {
    margin-top: 14px;
    color: #020e29;
    font-size: 18px;
    letter-spacing: 2px;
}

.hotel-line {
    height: 8px;
    border-radius: 20px;
    background: #dfe4ec;
    margin-top: 12px;
}

    .hotel-line.short {
        width: 60%;
    }


/* ------------------------------------------------------------
   MAGNIFYING GLASS
------------------------------------------------------------ */

.magnifier {
    position: absolute;
    width: 145px;
    height: 145px;
    z-index: 10;
    pointer-events: none;
    animation: searchHotel 3s ease-in-out infinite;
}

.magnifier-glass {
    position: absolute;
    width: 108px;
    height: 108px;
    border: 6px solid #020e29;
    border-radius: 50%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.15);
    box-shadow: 0 5px 20px rgba(2,14,41,.18), inset 0 0 20px rgba(255,255,255,.35);
}

.magnifier-handle {
    position: absolute;
    width: 65px;
    height: 15px;
    background: #020e29;
    border-radius: 20px;
    transform: rotate(40deg);
    left: 88px;
    top: 105px;
    box-shadow: 0 4px 10px rgba(2,14,41,.18);
}

    .magnifier-handle::after {
        content: "";
        position: absolute;
        right: -7px;
        top: -2px;
        width: 18px;
        height: 19px;
        border-radius: 50%;
        background: #020e29;
    }


/* ------------------------------------------------------------
   SEARCH ANIMATION
------------------------------------------------------------ */

@keyframes searchHotel {

    0% {
        transform: translateX(-125px) translateY(8px) rotate(-8deg);
    }

    30% {
        transform: translateX(0) translateY(-5px) rotate(0deg);
    }

    60% {
        transform: translateX(0) translateY(-5px) rotate(0deg);
    }

    85% {
        transform: translateX(125px) translateY(8px) rotate(8deg);
    }

    100% {
        transform: translateX(-125px) translateY(8px) rotate(-8deg);
    }
}


/* ------------------------------------------------------------
   PROGRESS BAR
------------------------------------------------------------ */

.loading-bar {
    width: 620px;
    max-width: 90%;
    height: 5px;
    background: #dfe4ec;
    border-radius: 20px;
    overflow: hidden;
    margin: 22px auto 0;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: #020e29;
    border-radius: 20px;
    animation: loadingProgress 4s ease-in-out infinite;
}

@keyframes loadingProgress {

    0% {
        width: 0%;
    }

    50% {
        width: 65%;
    }

    85% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}


/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------ */

@media (max-width: 768px) {

    .loader-content {
        padding: 20px 15px;
    }

    .loader-title {
        font-size: 25px;
        color: #020e29;
    }

    .loader-text {
        font-size: 14px;
        color: #43546b;
    }

    .hotel-search-loader {
        height: 270px;
        margin-top: 30px;
    }

    .hotel-loader-card {
        width: 145px;
        height: 220px;
        padding: 10px;
    }

        .hotel-loader-card.left {
            left: -5px;
        }

        .hotel-loader-card.right {
            right: -5px;
        }

        .hotel-loader-card.center {
            width: 175px;
            height: 245px;
        }

    .hotel-image {
        height: 105px;
    }

    .center .hotel-image {
        height: 120px;
    }

    .magnifier {
        width: 110px;
        height: 110px;
    }

    .magnifier-glass {
        width: 82px;
        height: 82px;
        border-width: 5px;
    }

    .magnifier-handle {
        width: 48px;
        height: 12px;
        left: 68px;
        top: 80px;
    }

    @keyframes searchHotel {

        0% {
            transform: translateX(-70px) translateY(5px) rotate(-8deg);
        }

        30% {
            transform: translateX(0) translateY(-5px) rotate(0);
        }

        60% {
            transform: translateX(0) translateY(-5px) rotate(0);
        }

        85% {
            transform: translateX(70px) translateY(5px) rotate(8deg);
        }

        100% {
            transform: translateX(-70px) translateY(5px) rotate(-8deg);
        }
    }
}

    .modal-header .btn-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform .3s ease, opacity .3s ease;
    }

        .modal-header .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }

    .booking-modal-blur {
        filter: blur(5px);
        transition: filter .25s ease;
    }
    /*=====================================================
                   Common page css
    ======================================================*/

    .legal-page {
        background: linear-gradient(180deg,#f8fbfd 0%,#eef5fa 100%);
        padding: 70px 0;
    }

    .legal-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 11px 24px;
        border-radius: 40px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.15);
        backdrop-filter: blur(14px);
        color: #E5C67B;
        font-size: .88rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

        .legal-badge i {
            font-size: 16px;
        }
    /*=====================================================
                    TITLE
    ======================================================*/

    .legal-hero h1 {
        font-size: 3.4rem;
        font-weight: 800;
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .legal-hero p {
        max-width: 760px;
        margin: auto;
        color: rgba(255,255,255,.90);
        line-height: 2;
        font-size: 1.08rem;
    }
    /*=====================================================
                    CONTENT CARD
    ======================================================*/

    .legal-card {
        background: #fff;
        border-radius: 26px;
        padding: 35px 45px;
        box-shadow: 0 20px 65px rgba(16,34,63,.08);
    }
    /*=====================================================
                    INTRO
    ======================================================*/

    .intro {
        font-size: 1.08rem;
        line-height: 1.5;
        color: #5d6a7d;
        margin-bottom: 25px;
    }

    .legal-card p > strong {
        color: #020e29;
    }

    .legal-card p {
        color: #5f6d82;
        font-size: 14px;
    }
    /*=====================================================
                SECTION
    ======================================================*/
    .legal-section {
        margin-bottom: 55px;
    }

        .legal-section:last-child {
            margin-bottom: 0;
        }

        .legal-section h2 {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            color: #020e29;
            font-weight: 700;
            margin-bottom: 25px;
        }

            .legal-section h2 i {
                color: #020e29;
                font-size: 20px;
            }

            .legal-section h2::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -10px;
                width: 72px;
                height: 4px;
                border-radius: 30px;
                background: linear-gradient( 90deg, rgba(2, 14, 41, 0.85), rgba(2, 14, 41, 0.60), rgba(2, 14, 41, 0.85) );
            }

        .legal-section p {
            color: #5f6d82;
            line-height: 1.5;
            margin-bottom: 12px;
        }
    /*=====================================================
                DIVIDER
    ======================================================*/

    .section-divider {
        height: 1px;
        margin: 45px 0;
        background: linear-gradient(to right, transparent, #dfe5ea, transparent);
    }
    /*=====================================================
                    LISTS
    ======================================================*/

    .legal-section ul {
        list-style: none;
        padding: 0;
        margin: 25px 0 15px;
    }

        .legal-section ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 11px;
            color: #2C2C2C;
            line-height: 1.5;
        }

            .legal-section ul li:last-child {
                margin-bottom: 0;
            }

            .legal-section ul li::before {
                content: "\F26A";
                font-family: "bootstrap-icons";
                position: absolute;
                left: 0;
                top: -1px;
                font-size: 17px;
                color: #020e29;
            }
    /*=====================================================
                    STRONG TEXT
    ======================================================*/

    .legal-section strong {
        color: #10223F;
        font-weight: 700;
    }
    /*=====================================================
                    LINKS
    ======================================================*/

    .legal-section a {
        color: #020e29;
        font-weight: 600;
        text-decoration: none;
        transition: .3s;
    }

        .legal-section a:hover {
            color: #020e29;
        }
    /*=====================================================
                    INFO BOX
    ======================================================*/

    .info-box {
        margin-top: 28px;
        padding: 28px 30px;
        border-radius: 20px;
        background: linear-gradient(180deg,#fbfdff,#f5f9fc);
        border-left: 5px solid #020e29;
        box-shadow: 0 15px 35px rgba(16,34,63,.06);
    }

        .info-box p:last-child {
            margin-bottom: 0;
        }
    /*=====================================================
                    WARNING BOX
    ======================================================*/

    .warning-box {
        margin-top: 28px;
        padding: 28px 30px;
        border-radius: 20px;
        background: #FFF8EC;
        border: 1px solid #F0DFB9;
    }

        .warning-box h3 {
            color: #10223F;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .warning-box p:last-child {
            margin-bottom: 0;
        }
    /*=====================================================
                    HIGHLIGHT BOX
    ======================================================*/

    .highlight-box {
        margin-top: 35px;
        padding: 35px;
        border-radius: 22px;
        background: linear-gradient(135deg,#10223F,#183A67);
        color: #fff;
        overflow: hidden;
        position: relative;
    }

        .highlight-box::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            right: -80px;
            top: -80px;
            border-radius: 50%;
            background: rgba(255,255,255,.06);
        }

        .highlight-box > * {
            position: relative;
            z-index: 2;
        }

        .highlight-box h3 {
            color: #fff;
            font-size: 1.55rem;
            margin-bottom: 16px;
        }

        .highlight-box p {
            color: rgba(255,255,255,.88);
            margin-bottom: 0;
        }
    /*=====================================================
                    TABLE
    ======================================================*/

    .legal-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 30px;
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
    }

        .legal-table tr {
            border-bottom: 1px solid #EDF1F4;
        }

            .legal-table tr:last-child {
                border-bottom: none;
            }

        .legal-table td {
            padding: 18px 22px;
            color: #5F6D82;
            vertical-align: top;
        }

            .legal-table td:first-child {
                width: 250px;
                background: #F9FBFD;
                color: #10223F;
                font-weight: 700;
            }
    /*=====================================================
                    QUOTE BLOCK
    ======================================================*/

    .legal-quote {
        margin: 35px 0;
        padding: 30px;
        border-left: 5px solid #020e29;
        background: #FAFCFD;
        border-radius: 16px;
        font-size: 1.05rem;
        color: #4F6177;
        line-height: 2;
        font-style: italic;
    }
    /*=====================================================
                    HR
    ======================================================*/

    .legal-section hr {
        margin: 45px 0;
        border: none;
        height: 1px;
        background: linear-gradient(to right, transparent, #DDE5EC, transparent);
    }
    /*=====================================================
                    SELECTION
    ======================================================*/

    .legal-page ::selection {
        background: #020e29;
        color: #fff;
    }
    /*=====================================================
                    ACCEPTANCE
    ======================================================*/

    .acceptance-box {
        margin-top: 45px;
        padding: 35px;
        border-radius: 22px;
        background: #FFF8EC;
        border: 1px solid #EEDCB4;
    }

        .acceptance-box h2,
        .acceptance-box h3 {
            color: #10223F;
            font-size: 1.55rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .acceptance-box p:last-child {
            margin-bottom: 0;
        }
    /*=====================================================
                    COMMITMENT
    ======================================================*/

    .commitment-box {
        margin-top: 40px;
        border-radius: 22px;
        padding: 40px;
        background: linear-gradient(180deg,#FCF8F0,#FFFFFF);
        border: 1px solid #EFE2C5;
        box-shadow: 0 15px 35px rgba(16,34,63,.05);
    }

        .commitment-box h2,
        .commitment-box h3 {
            color: #10223F;
            font-size: 1.6rem;
            margin-bottom: 18px;
        }

        .commitment-box p:last-child {
            margin-bottom: 0;
        }
    /*=====================================================
                    FOOT NOTE
    ======================================================*/

    .legal-footer-note {
        margin-top: 45px;
        text-align: center;
        color: #7A879B;
        font-size: .95rem;
        line-height: 1.8;
    }
    /*=====================================================
                    SMOOTH SPACING
    ======================================================*/

    .legal-section:last-of-type {
        margin-bottom: 0;
    }

    .legal-card > *:last-child {
        margin-bottom: 0;
    }
    /*=====================================================
                    RESPONSIVE
    ======================================================*/
    .headtxt {
        font-size: 37px;
        color: #020e29;
        margin-bottom: 10px;
    }

    @media(max-width:991px) {

        .legal-page {
            padding: 50px 0;
        }

        .legal-hero {
            padding: 70px 35px;
            border-radius: 22px;
        }

            .legal-hero h1 {
                font-size: 2.4rem;
            }

        .legal-card {
            padding: 35px;
        }

        .legal-meta {
            flex-direction: column;
            align-items: center;
        }

        .contact-box,
        .commitment-box,
        .acceptance-box {
            padding: 30px;
        }
    }

    @media(max-width:767px) {

        .legal-page {
            padding: 35px 0;
        }

        .legal-hero {
            padding: 55px 22px;
        }

            .legal-hero h1 {
                font-size: 1.9rem;
            }

            .legal-hero p {
                font-size: .96rem;
            }

        .legal-card {
            padding: 24px;
            border-radius: 18px;
        }

        .legal-section {
            margin-bottom: 40px;
        }

            .legal-section h2 {
                font-size: 1.35rem;
            }

        .contact-box,
        .commitment-box,
        .acceptance-box {
            padding: 24px;
        }

        .contact-item {
            gap: 14px;
        }

            .contact-item i {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }

        .legal-table td {
            display: block;
            width: 100%;
        }

            .legal-table td:first-child {
                width: 100%;
                border-bottom: 1px solid #EDF1F4;
            }
    }

    .contact-cards {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 24px;
        margin-top: 30px;
    }

    .contact-card {
        background: #fff;
        border: 1px solid #E9EDF3;
        border-radius: 20px;
        padding: 20px 30px;
        text-align: center;
        box-shadow: 0 12px 30px rgba(16,34,63,.05);
    }

        .contact-card:hover {
            border-color: #020e29;
            box-shadow: 0 20px 40px rgba(16,34,63,.10);
        }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient( 90deg, rgba(213, 214, 201, 0.75), rgba(213, 214, 201, 0.45), rgba(213, 214, 201, 0.75) );
        color: #020e29;
        font-size: 24px;
    }

    .contact-card h5 {
        color: #020e29;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .contact-card p {
        color: #68778F;
        line-height: 1.8;
        margin: 0;
    }

    @media(max-width:991px) {

        .contact-cards {
            grid-template-columns: 1fr;
        }
    }

    .form-check label {
        font-size: 13px;
        font-weight: 600;
    }

    .room-booking-dialog {
        max-width: 420px;
    }
    /*contact use page css*/
    .contact-section {
        background: #FAF8F4;
    }

    .contact-wrapper {
        background: #fff;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,.08);
        display: flex;
        align-items: center;
    }

    .contact-form-side {
        flex: 1.1;
        padding: 30px;
    }

    .contact-image-side {
        flex: .9;
        background: #F8F4EC;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .contact-image-side img {
            max-width: 100%;
        }

    .contact-badge {
        display: inline-block;
        background: #F5EFE4;
        color: #020e29;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 2px;
        padding: 10px 22px;
        border-radius: 40px;
        margin-bottom: 7px;
    }

    .contact-form-side h2 {
        color: #020e29;
        font-weight: 700;
        font-size: 32px;
        margin-bottom: 7px;
    }

    .contact-form-side p {
        color: #6E7685;
        margin-bottom: 14px;
        max-width: 520px;
        line-height: 1.5;
        font-size: 14px;
    }

    .contact-input {
        height: 40px;
        border-radius: 15px;
        border: 1px solid #D7DDE7;
        background: #FAFBFD;
        color: #10233F;
        font-size: 15px;
        padding: 0 18px;
        transition: .3s;
        box-shadow: none;
    }

    .contact-message {
        height: 100px;
        resize: none;
        padding-top: 18px;
    }

    .contact-input:focus {
        border-color: #020e29;
    }

    .contact-btn {
        width: 100%;
        border: none;
        border-radius: 14px;
        background: #020e29;
        color: #fff;
        font-weight: 700;
        font-size: 17px;
        transition: .35s;
        padding: 10px;
    }

        .contact-btn:hover {
            background: #020e29;
            transform: translateY(-2px);
        }

    @keyframes floatImage {

        0%,100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @media(max-width:991px) {

        .contact-wrapper {
            flex-direction: column-reverse;
        }

        .contact-image-side {
            min-height: auto;
            padding: 40px;
        }

        .contact-form-side {
            padding: 40px 30px;
        }

            .contact-form-side h2 {
                font-size: 32px;
            }
        .scrap-body h4 {
            font-size: 20px;
        }
    }

    @media(max-width:576px) {

        .contact-form-side {
            padding: 30px 20px;
        }

            .contact-form-side h2 {
                font-size: 28px;
            }

        .contact-image-side {
            padding: 25px;
        }
    }

    button {
        font-size: 14px !important;
        letter-spacing: 0.9px !important;
    }

    .cmnindexbtn {
        width: auto;
    }

    .faqbtn {
        position: absolute;
        left: 0px;
        top: -47px;
    }

    .faqmaindiv .legal-section {
        margin-bottom: 30px;
    }

        .faqmaindiv .legal-section h2 {
            margin-bottom: 5px;
        }

            .faqmaindiv .legal-section h2::after {
                content: none;
            }

        .faqmaindiv .legal-section ul {
            margin: 15px 0 15px;
        }
    /* ========================================
   FLATPICKR - INCLUSIVE HOLIDAY STAYS
   Gold Theme
======================================== */
    .flatpickr-calendar {
        font-family: "Montserrat", sans-serif;
        background: #ffffff;
        border: 1px solid #dce3ee;
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(2, 14, 41, 0.18);
        overflow: hidden;
    }

    .flatpickr-months {
        background: #020e29;
        padding: 4px 0;
    }

    .flatpickr-month {
        color: #ffffff;
        fill: #ffffff;
    }

    .flatpickr-current-month {
        color: #ffffff;
        font-weight: 600;
        font-size: 15px;
    }

        .flatpickr-current-month .flatpickr-monthDropdown-months {
            /* background: #020e29; */
            color: #ffffff;
            font-weight: 600;
        }

            .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
                /* background: #0b1f3a; */
            }

            .flatpickr-current-month .flatpickr-monthDropdown-months option {
                background: #ffffff;
                color: #40516b;
            }


        .flatpickr-current-month input.cur-year {
            color: #ffffff;
            font-weight: 600;
        }

    .flatpickr-prev-month,
    .flatpickr-next-month {
        fill: #ffffff !important;
        color: #ffffff !important;
    }

        .flatpickr-prev-month svg,
        .flatpickr-next-month svg {
            fill: #ffffff !important;
        }

        .flatpickr-prev-month:hover svg,
        .flatpickr-next-month:hover svg {
            fill: #dce3ee !important;
        }

    .flatpickr-weekdays {
        background: linear-gradient( 90deg, rgba(220, 227, 238, 0.75), rgba(220, 227, 238, 0.45), rgba(220, 227, 238, 0.75) );
        padding-top: 4px;
    }

    .flatpickr-weekday {
        /* background: linear-gradient(
        90deg,
        rgba(220, 227, 238, 0.75),
        rgba(220, 227, 238, 0.45),
        rgba(220, 227, 238, 0.75)
    ) !important; */
        color: #0b1f3a !important;
        font-size: 12px;
        font-weight: 700;
    }

    .flatpickr-day {
        color: #40516b;
        border-radius: 50%;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .flatpickr-day:hover {
            background: linear-gradient( 90deg, rgba(220, 227, 238, 0.75), rgba(220, 227, 238, 0.45), rgba(220, 227, 238, 0.75) );
            color: #0b1f3a;
        }

        .flatpickr-day.today {
            background: linear-gradient( 90deg, rgba(220, 227, 238, 0.75), rgba(220, 227, 238, 0.45), rgba(220, 227, 238, 0.75) );
            border: 1px solid #020e29;
            color: #0b1f3a;
            font-weight: 700;
        }

            .flatpickr-day.today:hover {
                background: #020e29;
                border-color: #020e29;
                color: #ffffff;
            }

        .flatpickr-day.selected,
        .flatpickr-day.selected:hover,
        .flatpickr-day.selected:focus {
            background: #020e29;
            border-color: #020e29;
            color: #ffffff;
            font-weight: 600;
        }

        .flatpickr-day.startRange,
        .flatpickr-day.endRange {
            background: #0b1f3a;
            border-color: #0b1f3a;
            color: #ffffff;
        }

        .flatpickr-day.inRange {
            background: #edf1f6;
            border-color: #edf1f6;
            color: #40516b;
            box-shadow: -5px 0 0 #edf1f6, 5px 0 0 #edf1f6;
        }

        .flatpickr-day.flatpickr-disabled,
        .flatpickr-day.flatpickr-disabled:hover {
            color: #c7ced9;
            background: transparent;
            border-color: transparent;
            cursor: not-allowed;
        }

        .flatpickr-day.prevMonthDay,
        .flatpickr-day.nextMonthDay {
            color: #b9c2d0;
        }

            .flatpickr-day.prevMonthDay:hover,
            .flatpickr-day.nextMonthDay:hover {
                background: linear-gradient( 90deg, rgba(220, 227, 238, 0.75), rgba(220, 227, 238, 0.45), rgba(220, 227, 238, 0.75) );
                color: #0b1f3a;
            }

    .flatpickr-time {
        border-top: 1px solid #dce3ee;
    }

        .flatpickr-time input {
            color: #40516b;
        }

            .flatpickr-time input:hover,
            .flatpickr-time input:focus {
                background: linear-gradient( 90deg, rgba(220, 227, 238, 0.75), rgba(220, 227, 238, 0.45), rgba(220, 227, 238, 0.75) );
            }

        .flatpickr-time .flatpickr-am-pm {
            color: #0b1f3a;
        }

            .flatpickr-time .flatpickr-am-pm:hover {
                background: linear-gradient( 90deg, rgba(220, 227, 238, 0.75), rgba(220, 227, 238, 0.45), rgba(220, 227, 238, 0.75) );
            }

    .numInputWrapper:hover {
        background: rgba(2, 14, 41, 0.12);
    }

    .numInputWrapper span.arrowUp:after {
        border-bottom-color: #ffffff;
    }

    .numInputWrapper span.arrowDown:after {
        border-top-color: #ffffff;
    }

    .flatpickr-monthDropdown-months:focus,
    .flatpickr-current-month input.cur-year:focus {
        outline: none;
    }

    @media (max-width: 576px) {

        .flatpickr-calendar {
            width: 310px;
            border-radius: 12px;
        }

        .flatpickr-day {
            font-size: 13px;
        }
    }
    /*blog page css*/
    .blog-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .blog-hero {
        position: relative;
        height: 87vh;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

        .blog-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .blog-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(0,0,0,.25), rgba(0,0,0,.65) );
        display: flex;
        align-items: center;
    }

        .blog-overlay .container {
            max-width: 900px;
            color: #fff;
        }

    .blog-category {
        display: inline-block;
        background: #020e29;
        color: #fff;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        letter-spacing: .8px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .blog-meta {
        display: flex;
        gap: 30px;
        margin-bottom: 20px;
        opacity: .9;
    }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

    .blog-overlay h1 {
        font-size: 42px;
        line-height: 1.2;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .blog-overlay p {
        font-size: 20px;
        line-height: 1.5;
        max-width: 750px;
    }

    .blog-introduction {
        padding: 0px;
        background: #fff;
    }

        .blog-introduction .container {
            max-width: 900px;
        }

        .blog-introduction p {
            line-height: 1.5;
            color: #555;
        }

    .blog-content {
        padding: 20px 0 100px;
    }

    .blog-section {
        margin-bottom: 120px;
    }

        .blog-section h2 {
            font-size: 28px;
            color: #232323;
            margin-bottom: 7px;
            font-weight: 700;
        }

        .blog-section p {
            line-height: 1.5;
            color: #555;
            margin-bottom: 3px;
        }

    .blog-section-image {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
        transition: .4s;
    }

        .blog-section-image:hover {
            transform: translateY(-8px);
        }

    .blog-center-image {
        width: 100%;
        max-width: 900px;
        border-radius: 24px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

    .blog-bullets {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
        gap: 18px;
        margin-top: 17px;
    }

    .blog-bullet {
        background: #fff;
        border-radius: 16px;
        padding: 7px 18px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        border: 1px solid #f2f2f2;
        align-items: center;
    }

        .blog-bullet i {
            color: #020e29;
            font-size: 22px;
            margin-top: 2px;
        }

        .blog-bullet span {
            color: #555;
            line-height: 1.5;
        }
    /* ================================
   UNIVERSAL ORLANDO SECTION
================================ */

    .destinations-section {
        padding: 70px 0 30px;
        background: #fff;
    }
    /* ================================
   SECTION HEADING
================================ */

    .destination-heading {
        text-align: center;
        margin-bottom: 45px;
    }

        .destination-heading .subtitle {
            display: block;
            margin-bottom: 12px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 4px;
            color: #bd7344;
        }

        .destination-heading h2 {
            margin: 0;
            font-size: 48px;
            line-height: 1.15;
            font-weight: 700;
            color: #020e29;
        }

        .destination-heading p {
            margin: 18px auto 0;
            max-width: 720px;
            font-size: 16px;
            line-height: 1.7;
            color: #777;
        }
    /* ================================
   IMAGE CONTAINER
================================ */

    .orlandoimgdiv {
        /*    width: 100%;*/
        /*    height: 520px;*/
        border-radius: 18px;
        overflow: hidden;
    }
    /* ================================
   CLICKABLE IMAGE
================================ */

    .orlando-image-link {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        background-image: url('../images/UniversalOrlando.webp');
        /* Show the complete image inside the 520px container */
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        text-decoration: none;
        overflow: hidden;
        transition: transform 0.5s ease;
    }
    /* ================================
   OVERLAY
================================ */

    .orlando-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        justify-content: end;
        padding-bottom: 35px;
        background: rgba(0, 0, 0, 0);
        transition: background 0.35s ease;
        padding-right: 50px;
    }
    /* ================================
   EXPLORE BUTTON
================================ */

    .explore-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 13px 25px;
        border-radius: 30px;
        color: #020e29 !important;
        background-color: #fff;
        font-size: 14px;
        font-weight: 600;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }
        /* ================================
   ARROW
================================ */

        .explore-text i {
            font-size: 13px;
            transition: transform 0.3s ease;
        }
    /* ================================
   HOVER OVERLAY
================================ */

    .orlando-image-link:hover .orlando-overlay {
        background: rgba(0, 0, 0, 0.28);
    }
    /* ================================
   SHOW EXPLORE BUTTON
================================ */

    .orlando-image-link:hover .explore-text {
        opacity: 1;
        transform: translateY(0);
    }
        /* ================================
   ARROW HOVER
================================ */

        .orlando-image-link:hover .explore-text i {
            transform: translateX(4px);
        }
    /* ================================
   IMAGE ZOOM
================================ */

    .orlando-image-link:hover {
        transform: scale(1.02);
    }
    /* ================================
   RESPONSIVE - TABLET
================================ */

    @media (max-width: 992px) {

        .destination-heading h2 {
            font-size: 40px;
        }
        /*    .orlandoimgdiv {
        height: 430px;
    }*/
    }
    /* ================================
   RESPONSIVE - MOBILE
================================ */

    @media (max-width: 768px) {

        .destinations-section {
            padding: 55px 0 70px;
        }

        .destination-heading {
            margin-bottom: 30px;
        }

            .destination-heading h2 {
                font-size: 34px;
            }

            .destination-heading p {
                font-size: 14px;
            }
        /*    .orlandoimgdiv {
        height: 350px;
        border-radius: 14px;
    }*/

        .orlando-overlay {
            padding-bottom: 25px;
        }
    }
    /* ================================
   RESPONSIVE - SMALL MOBILE
================================ */

    @media (max-width: 480px) {

        .destination-heading .subtitle {
            font-size: 10px;
            letter-spacing: 3px;
        }

        .destination-heading h2 {
            font-size: 28px;
        }
        /*    .orlandoimgdiv {
        height: 280px;
    }*/

        .orlando-overlay {
            padding-bottom: 20px;
        }

        .explore-text {
            padding: 11px 20px;
            font-size: 13px;
        }
    }
    /*********************************************************/
    .luxury-image-section {
        width: 100%;
        padding: 60px 0;
        overflow: hidden;
    }

    .luxury-image-wrapper {
        width: 90%;
        max-width: 1400px;
        margin: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 35px;
        align-items: center;
    }
    /* =========================================
   MAIN IMAGE
========================================= */

    .luxury-main-image {
        height: 450px;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: #111;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
    }

        .luxury-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity .5s ease, transform 1.2s ease;
        }
        /* subtle zoom */

        .luxury-main-image:hover img {
            transform: scale(1.04);
        }
    /* =========================================
   MAIN IMAGE OVERLAY
========================================= */

    .luxury-image-overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 60px 55px 50px;
        background: linear-gradient( to top, rgba(0,0,0,.82), rgba(0,0,0,.45), transparent );
        color: #fff;
    }

        .luxury-image-overlay span {
            display: inline-block;
            margin-bottom: 15px;
            font-size: 11px;
            letter-spacing: 3px;
            font-weight: 600;
            color: #e4c58d;
        }

        .luxury-image-overlay h2 {
            margin: 0 0 15px;
            font-size: 55px;
            line-height: 1;
            font-weight: 500;
        }

        .luxury-image-overlay p {
            max-width: 560px;
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255,255,255,.82);
        }
    /* =========================================
   RIGHT IMAGE STACK
========================================= */

    .luxury-image-stack {
        height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        overflow: hidden;
        position: relative;
    }
    /* =========================================
   SMALL IMAGES
========================================= */

    .luxury-small-image {
        height: 98px;
        width: 100%;
        position: relative;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 9px;
        cursor: pointer;
        opacity: .48;
        filter: blur(2px);
        transform: scale(.94);
        transition: transform .7s ease, opacity .7s ease, filter .7s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
    }
        /* image */

        .luxury-small-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .8s ease;
        }
        /* =========================================
   SMALL IMAGE OVERLAY
========================================= */

        .luxury-small-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient( 90deg, rgba(0,0,0,.5), rgba(0,0,0,.08) );
        }
    /* =========================================
   SMALL IMAGE TEXT
========================================= */

    .small-image-content {
        position: absolute;
        z-index: 2;
        left: 20px;
        bottom: 17px;
        color: #fff;
    }

        .small-image-content span {
            font-size: 10px;
            letter-spacing: 2px;
            color: #e4c58d;
        }

        .small-image-content h4 {
            margin: 4px 0 0;
            font-family: "Cormorant Garamond", serif;
            font-size: 22px;
            font-weight: 500;
        }
    /* =========================================
   ACTIVE SMALL IMAGE
========================================= */

    .luxury-small-image.active-small {
        opacity: .75;
        filter: blur(0);
        transform: scale(1);
    }
    /* =========================================
   HOVER
========================================= */

    .luxury-small-image:hover {
        opacity: .9;
        filter: blur(0);
        transform: scale(1.02);
    }

        .luxury-small-image:hover img {
            transform: scale(1.08);
        }
    /* =========================================
   ANIMATION CLASSES
========================================= */

    .luxury-small-image.slide-out {
        animation: luxurySlideOut .7s ease forwards;
    }

    .luxury-small-image.slide-in {
        animation: luxurySlideIn .7s ease forwards;
    }


    @keyframes luxurySlideOut {

        0% {
            opacity: .7;
            transform: translateY(0) scale(1);
        }

        100% {
            opacity: 0;
            transform: translateY(-100px) scale(.9);
        }
    }


    @keyframes luxurySlideIn {

        0% {
            opacity: 0;
            transform: translateY(100px) scale(.9);
        }

        100% {
            opacity: .48;
            transform: translateY(0) scale(.94);
        }
    }
    /* =========================================
   MAIN IMAGE CHANGE
========================================= */

    .luxury-main-image.image-changing img {
        animation: mainImageChange .8s ease;
    }


    @keyframes mainImageChange {

        0% {
            opacity: .2;
            transform: scale(1.08);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    /* =========================================
   TABLET
========================================= */

    @media (max-width: 991px) {

        .luxury-image-section {
            padding: 80px 0;
        }

        .luxury-image-wrapper {
            grid-template-columns: minmax(0, 1fr) 230px;
            gap: 20px;
        }

        .luxury-main-image,
        .luxury-image-stack {
            height: 520px;
        }

        .luxury-small-image {
            height: 110px;
        }

        .luxury-image-overlay {
            padding: 40px 35px;
        }

            .luxury-image-overlay h2 {
                font-size: 43px;
            }
    }
    /* =========================================
   MOBILE
========================================= */

    @media (max-width: 767px) {

        .luxury-image-section {
            padding: 60px 0;
        }

        .luxury-image-wrapper {
            width: 92%;
            display: block;
        }
        /* Main image */

        .luxury-main-image {
            height: 470px;
            border-radius: 10px;
        }


        .luxury-image-overlay {
            padding: 40px 25px 30px;
        }

            .luxury-image-overlay h2 {
                font-size: 38px;
            }

            .luxury-image-overlay p {
                font-size: 13px;
            }
        /* Horizontal thumbnails */

        .luxury-image-stack {
            height: 105px;
            margin-top: 18px;
            display: flex;
            flex-direction: row;
            gap: 12px;
            overflow: hidden;
            justify-content: flex-start;
        }

        .luxury-small-image {
            width: 150px;
            height: 95px;
            flex: 0 0 150px;
        }

        .small-image-content h4 {
            font-size: 17px;
        }
    }

    .waltdisbtn {
        width: 200px;
    }

    .section-title {
        color: #1a2a18;
    }

    .property-discount {
        position: absolute;
        top: 14px;
        left: 6px;
        z-index: 1;
        display: block;
        padding: 6px 22px;
        background: #f4b82d;
        color: #020e29;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.2px;
        line-height: 1.2;
        border-radius: 6px;
        transform: rotate(-6deg);
        transform-origin: center;
        box-shadow: 0 8px 14px rgba(2, 14, 41, 0.22), 0 3px 4px rgba(0, 0, 0, 0.12);
        pointer-events: none;
        animation: discountStretch 2s ease-in-out infinite;
    }

    @keyframes discountStretch {

        0%, 70%, 100% {
            transform: rotate(-6deg) scaleX(1);
        }

        75% {
            transform: rotate(-6deg) scaleX(1.12);
        }

        80% {
            transform: rotate(-6deg) scaleX(0.94);
        }

        85% {
            transform: rotate(-6deg) scaleX(1.06);
        }

        90% {
            transform: rotate(-6deg) scaleX(1);
        }
    }
    /* Small folded/shadow effect underneath */
    .property-discount::after {
        content: "";
        position: absolute;
        bottom: -11px;
        left: 3px;
        width: 18px;
        height: 12px;
        background: #d99d18;
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    .original-price {
        color: #777;
        font-size: 15px;
        font-weight: 500;
        text-decoration: line-through;
        text-decoration-thickness: 1px;
        animation: oldPriceAttention 1.8s ease-in-out infinite;
    }

    @keyframes oldPriceAttention {

        0%, 100% {
            transform: translateX(0);
            opacity: 0.6;
        }

        50% {
            transform: translateX(3px);
            opacity: 1;
        }
    }
    /*********************/
    /* =========================================
   ORLANDO DESTINATION CARDS
========================================= */

    .orlandoimgdiv {
        margin-top: 35px;
    }
    /* =========================================
   CARD
========================================= */

    .orlando-image-link {
        position: relative;
        display: block;
        width: 100%;
        height: 420px;
        overflow: hidden;
        border-radius: 22px;
        background-size: cover;
        background-position: center;
        text-decoration: none;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    /* =========================================
   IMAGES
========================================= */

    .universal-card {
        background-image: url('../images/Orlando.webp');
    }

    .disney-card {
        background-image: url('../images/Disney.webp');
    }

    .universal-card,
    .disney-card {
        background-size: 120% auto;
        background-repeat: no-repeat;
        background-position: center center;
        overflow: hidden;
    }

    @media (max-width: 767px) {
        .universal-card,
        .disney-card {
            background-size: auto 140%;
            background-position: center center;
        }
    }
    /* =========================================
   OVERLAY
========================================= */

    .orlando-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: flex-start;
        padding: 35px;
        background: linear-gradient( to top, rgba(2, 14, 41, 0.82) 0%, rgba(2, 14, 41, 0.42) 45%, rgba(2, 14, 41, 0.05) 100% );
        transition: background 0.4s ease;
    }
    /* =========================================
   CONTENT
========================================= */

    .orlando-card-content {
        color: #fff;
    }


    .orlando-label {
        display: block;
        margin-bottom: 8px;
        color: #f4b82d;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
    }


    .orlando-card-content h3 {
        margin: 0 0 18px;
        color: #fff;
        font-size: 32px;
        font-weight: 700;
    }

    .explore-text {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        transition: gap 0.3s ease;
    }


        .explore-text i {
            font-size: 14px;
        }

    .orlando-image-link:hover {
        transform: translateY(-5px);
    }


        .orlando-image-link:hover .orlando-overlay {
            background: linear-gradient( to top, rgba(2, 14, 41, 0.88) 0%, rgba(2, 14, 41, 0.50) 50%, rgba(2, 14, 41, 0.10) 100% );
        }

        .orlando-image-link:hover .explore-text {
            gap: 16px;
        }

    @media (max-width: 991px) {

        .orlando-image-link {
            height: 360px;
        }

        .orlando-card-content h3 {
            font-size: 28px;
        }
    }

    @media (max-width: 767px) {

        .orlandoimgdiv {
            width: 100%;
            margin-top: 25px;
            overflow: visible;
            margin-left: 0px;
            margin-right: 0px;
        }

            .orlandoimgdiv .col-12 {
                width: 100%;
                padding-left: 0;
                padding-right: 0;
            }

        .orlando-image-link {
            width: 100%;
            height: 320px;
            display: block;
            margin: 0;
            border-radius: 16px;
        }

        .orlando-overlay {
            width: 100%;
            height: 100%;
            padding: 25px;
        }
    }


    @media (max-width: 767px) {

        .allscraps {
            row-gap: 0px;
        }

        .scrap-cardmain {
            width: 100% !important;
            flex: 0 0 100% !important;
        }

        .rotate-right {
            margin-top: 0px;
        }

        .rotate-right, .rotate-left {
            transform: rotate(0deg);
        }

        .allscraps {
            margin-left: 0px;
            margin-right: 0px;
        }

        .scrap-cardmain .bpinimgt {
            top: -10px;
        }
    }

    .numInputWrapper .arrowUp {
        background-color: #fff !important;
    }

    .nighttxt {
        color: black;
        font-size: 15px;
    }

.vppage .searchdiv{
    border:none;
}

.vppage .hero-search{
    padding-top:0px;
}
.about-offer {
    width: 100%;
}

.about-offer-header {
    width: 100%;
    border: none;
    background: linear-gradient(90deg, rgba(213, 214, 201, 0.75), rgba(213, 214, 201, 0.45), rgba(213, 214, 201, 0.75));
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: #020e29;
    text-align: left;
    border-radius: 18px;
}

.about-offer-header span{
    font-size:20px;
}


.about-offer-header i {
    font-size: 14px;
    transition: transform .3s ease;
}

.about-offer-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s ease, opacity .3s ease;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

    .about-offer-content p {
        margin-bottom: 12px;
    }

    .about-offer-content ul {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .about-offer-content li {
        margin-bottom: 8px;
    }

.about-offer.open .about-offer-content {
    max-height: 250vh;
    opacity: 1;
    padding: 15px 8px;
}
.about-offer.open .about-offer-header i {
    transform: rotate(180deg);
}
.vacation-content{
    padding-bottom:20px;
}
.lower-x {
    text-transform: lowercase;
}
.disney-banner {
    width: 100%;
    margin: 0;
    padding: 0;
}


.disney-banner-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}


    .disney-banner-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

.disney-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(2, 14, 41, 0.75) 0%, rgba(2, 14, 41, 0.40) 45%, rgba(2, 14, 41, 0.08) 100% );
    z-index: 1;
}

@media(max-width:991px) {
    .disney-banner-image {
        height: 300px;
    }
}

.vacation-package-cards {
    padding: 20px 0 0px;
    background: #fff;
}


/* SECTION HEADING */

.vacation-packages-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}


    .vacation-packages-heading span {
        display: block;
        margin-bottom: 10px;
        color: #c9a15e;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 2px;
    }


    .vacation-packages-heading h2 {
        margin-bottom: 12px;
        color: #020e29;
        font-size: 36px;
        font-weight: 700;
    }


    .vacation-packages-heading p {
        margin: 0;
        color: #777;
        font-size: 15px;
        line-height: 1.7;
    }


/* CARD */

.vacation-package-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(2, 14, 41, 0.08);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}


    .vacation-package-card:hover {
        box-shadow: 0 18px 45px rgba(2, 14, 41, 0.15);
    }


/* IMAGE */

.package-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}


    .package-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: fill;
        transition: transform .5s ease;
    }


.vacation-package-card:hover .package-image img {
    transform: scale(1.06);
}


/* CONTENT */

.package-card-content {
    padding: 15px 12px;
}


    .package-card-content h3 {
        margin: 0;
        color: #020e29;
        font-size: 19px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 12px;
    }
.feature-list a, .search-status a, .property-flow a{
    text-decoration: none;
}

/* =========================================
   IMPORTANT TO KNOW
========================================= */

.important-info-section {
    width: 100%;
    background: linear-gradient( 135deg, #f5f8ff 0%, #ffffff 100% );
    border: 1px solid #e3e9f5;
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.08), 0 2px 6px rgba(11, 31, 58, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.11), 0 3px 8px rgba(11, 31, 58, 0.05);
}

.important-info-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding: 25px 0px;
    border-radius: 16px;
  
}

.important-info-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: #fff;
    background: linear-gradient( 135deg, #5B3DF5, #3d7cff );
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(91, 61, 245, 0.25);
}

    .important-info-icon i {
        font-size: 18px;
        line-height: 1;
    }


.important-info-content {
    flex: 1;
}
.important-info-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: #0b1f3a;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.important-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    background: #5B3DF5;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(91, 61, 245, 0.09);
    animation: importantDotBlink 1.2s ease-in-out infinite;
}

@keyframes importantDotBlink {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(91, 61, 245, 0.09);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.75);
        box-shadow: 0 0 0 7px rgba(91, 61, 245, 0.02);
    }
}
.important-info-content p {
    margin: 0;
    color: #5c6b80;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 767px) {

    .important-info-section {
        padding: 20px 0;
    }

    .important-info-card {
        gap: 14px;
        padding: 21px 20px;
        border-radius: 14px;
    }

        .important-info-card::before {
            top: 18px;
            bottom: 18px;
        }

    .important-info-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

        .important-info-icon i {
            font-size: 16px;
        }

    .important-info-title {
        font-size: 12px;
    }

    .important-info-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

    .important-info-section {
        padding: 15px 0;
    }

    .important-info-card {
        padding: 18px 16px;
        gap: 12px;
    }

    .important-info-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

        .important-info-icon i {
            font-size: 14px;
        }

    .important-info-title {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .important-info-content p {
        font-size: 12.5px;
        line-height: 1.65;
    }
}


#simpleLoader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease, visibility .5s ease;
}

    #simpleLoader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.simple-loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #e5e7eb;
    border-top-color: #020e29;
    border-radius: 50%;
    animation: simpleLoaderSpin .8s linear infinite;
}

@keyframes simpleLoaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}