/*--------------------------------------------------------------
#Owl Carousel
--------------------------------------------------------------*/
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem !important;
    color: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--contrast-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--contrast-color);
    color: #333;
}

.owl-carousel .owl-nav button.owl-next {
    right: -15px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -15px;
}

/* Media Query for owl carousel */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .owl-carousel .owl-nav button.owl-next {
        right: -15px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -15px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .owl-carousel .owl-nav button.owl-next {
        right: -15px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -15px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero .carousel-item {
    height: 50vh;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.175);
}

.hero .carousel-caption {
    bottom: 25%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

.hero .carousel-item.active .carousel-caption {
    opacity: 1;
    transform: translateY(0);
}

.hero .carousel-item .carousel-caption h1 {
    color: var(--contrast-color);
    font-weight: 700;
    font-size: 48px;
}

.hero .carousel-item .carousel-caption p {
    color: var(--contrast-color);
    font-size: 24px;
}

.hero .search-form {
    margin-top: -35px;
    margin-bottom: 15px;
    background: var(--background-color);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.hero .search-form input {
    border: none;
    border-right: 1px solid #ddd;
    outline: none;
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
}

.hero .search-form input::placeholder {
    color: #696969;
    font-size: 1rem;
    text-align: center;
}

.hero .search-form .search-btn {
    background: transparent;
}

.hero .search-form button {
    background-color: var(--background-color);
    color: var(--orange-color);
    font-weight: 800;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .search-form button:hover {
    background-color: var(--background-color);
    color: var(--orange-color);
    font-weight: 700;
}

.hero .form-control:focus {
    box-shadow: none;
}

.hero .search-form .hidden {
    display: none;
}

.hero .search-form .destination-options,
.hero .search-form .guests-options {
    border-radius: 5px;
    background-color: var(--contrast-color);
    padding: 10px;
    margin-top: 5px;
    position: absolute;
    min-width: 200px;
    max-width: 300px;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.45);
}

.hero .search-form .destination-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: scroll;
    /* scrollbar-width: none; */
}

/* .hero .search-form .destination-options ul::-webkit-scrollbar {
    display: none;
} */

.hero .search-form .destination-options ul::-webkit-scrollbar {
    width: 6px;
}

.hero .search-form .destination-options ul::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
}

.hero .search-form .destination-options ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.hero .search-form .destination-options li {
    padding: 5px;
    cursor: pointer;
}

.hero .search-form .destination-options li:hover {
    background-color: #f1f1f1;
}
.active-suggestion {
    background-color: #f1f1f1;
}

.hero .search-form .guestbtn,
.hero .search-form .guestbtn:hover {
    border: 1px solid #808080;
    border-radius: 50%;
    color: #808080;
    height: 25px;
    width: 25px;
    font-size: 0.825rem;
}

.hero .search-form .guestipt {
    border-right: none;
    font-size: 1rem;
    font-weight: 400;
}

@media (min-width: 320px) and (max-width: 440px) {
    .hero .carousel-item {
        height: 50vh;
    }

    .hero .carousel-caption {
        bottom: 20%;
    }

    .hero .carousel-item .carousel-caption h1 {
        font-size: 28px !important;
    }

    .hero .carousel-item .carousel-caption p {
        font-size: 20px !important;
    }

    .hero .search-form {
        margin-top: -50px;
    }

    .hero .search-form input {
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
    }

    .hero .search-form {
        border-radius: 10px;
    }

    .hero .search-form button {
        background-color: var(--contrast-color);
        color: var(--orange-color);
        border: 1px solid var(--orange-color);
        font-weight: 400;
        font-size: 1rem;
    }

    .hero .search-form input::placeholder {
        font-size: 1rem;
    }

    .hero .search-form .guestipt {
        border: none;
    }
}

@media (min-width: 700px) and (max-width: 1024px) {
    .hero .carousel-item {
        height: 25vh;
    }

    .hero .carousel-caption {
        bottom: 25%;
    }

    .hero .carousel-item .carousel-caption h1 {
        font-size: 36px !important;
    }

    .hero .carousel-item .carousel-caption p {
        font-size: 20px !important;
    }

    .hero .search-form {
        width: 90%;
    }
}

/*--------------------------------------------------------------
# Starter Page Section
--------------------------------------------------------------*/
.starter-page .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.starter-page .search-form {
    margin-top: -35px;
    margin-bottom: 35px;
    background: var(--background-color);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.starter-page .search-form input {
    border: none;
    border-right: 1px solid #ddd;
    outline: none;
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
}

.starter-page .search-form input::placeholder {
    color: #696969;
    font-size: 1rem;
    text-align: center;
}

.starter-page .search-form .search-btn {
    background: transparent;
}

.starter-page .search-form button {
    background-color: var(--background-color);
    color: var(--orange-color);
    font-weight: 800;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.starter-page .search-form button:hover {
    background-color: var(--background-color);
    color: var(--orange-color);
    font-weight: 700;
}

.starter-page .form-control:focus {
    box-shadow: none;
}

.starter-page .search-form .hidden {
    display: none;
}

.starter-page .search-form .destination-options,
.starter-page .search-form .guests-options {
    border-radius: 5px;
    background-color: var(--background-color);
    padding: 10px;
    margin-top: 5px;
    position: absolute;
    min-width: 200px;
    max-width: 300px;
    z-index: 10;
}

.starter-page .search-form .destination-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.starter-page .search-form .destination-options ul::-webkit-scrollbar {
    display: none;
}

.starter-page .search-form .destination-options li {
    padding: 5px;
    cursor: pointer;
}

.starter-page .search-form .destination-options li:hover {
    background-color: #f1f1f1;
}

.starter-page .search-form .guestbtn,
.starter-page .search-form .guestbtn:hover {
    border: 1px solid #808080;
    border-radius: 50%;
    color: #808080;
    height: 25px;
    width: 25px;
    font-size: 0.825rem;
}

.starter-page .search-form .guestipt {
    border-right: none;
    font-size: 1rem;
    font-weight: 400;
}

@media (min-width: 320px) and (max-width: 440px) {
    .starter-page .search-form {
        border-radius: 10px;
    }

    .starter-page .search-form input {
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .starter-page .search-form button {
        color: var(--orange-color);
        border: 1px solid var(--orange-color);
        font-weight: 400;
        font-size: 1rem;
    }

    .starter-page .search-form input::placeholder {
        font-size: 1rem;
    }

    .starter-page .search-form .guestipt {
        border: none;
    }
}

/*--------------------------------------------------------------
# Explore Countries Section
--------------------------------------------------------------*/
.exploreCountries .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.exploreCountries .country-row {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    position: relative;
    width: 100%;
}

.exploreCountries hr {
    height: 2px;
    background: rgba(0, 0, 0, 0.9);
    filter: blur(1px);
}

.exploreCountries .country-row::-webkit-scrollbar {
    display: none;
}

.exploreCountries .scroll-right-btn,
.exploreCountries .scroll-left-btn {
    background: transparent;
    border: none;
    color: #444444;
}

.exploreCountries .country-item {
    font-weight: normal;
    cursor: pointer;
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    position: relative;
    background: transparent;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
}

.exploreCountries .country-item.active {
    font-weight: bold;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 5px;
    padding: 6px 12px;
    position: relative;
    z-index: 1;
}

.exploreCountries .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    text-align: center;
}

.exploreCountries .card img {
    border-radius: 15px;
    object-fit: cover;
    height: 180px;
    cursor: pointer;
    width: 100%;
}

.exploreCountries .card p {
    margin: 0;
    font-size: 12px;
    font-family: var(--default-font);
}

/*--------------------------------------------------------------
# USP Section
--------------------------------------------------------------*/
.usp .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.usp .card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.usp .card:hover {
    transform: scale(1.03);
}

.usp .card-img-left {
    width: 100%;
    max-width: 60px;
    max-height: 60px;
    border-radius: 10px;
    padding: 0 0 0 10px;
}

.usp .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.usp .card-body h5 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    padding-left: 20px;
    margin-bottom: 0;
}

.usp .card-body p {
    color: #696969;
    font-size: 14px;
    text-align: justify;
}

/*--------------------------------------------------------------
# Propertypage Section
--------------------------------------------------------------*/
.property-page .containermain {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.property-page .filterselection hr {
    margin: 0.5rem 0;
}

.property-page .filter-group {
    margin-bottom: 1rem;
    padding: 5px;
}

.property-page .filter-group h6 {
    font-weight: 600;
    font-size: 16px;
}

.property-page .btn-counter {
    display: flex;
    align-items: center;
}

.property-page .btn-counter button {
    width: 25px;
    height: 25px;
    padding: 0;
    color: #808080;
    border: 1px solid #808080;
    border-radius: 50%;
}

.property-page .btn-counter input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
}

.property-page .slider {
    position: relative;
    width: 100%;
}

.property-page .slider-track {
    background: #e0e0e0;
    height: 5px;
    position: absolute;
    width: 100%;
    border-radius: 5px;
}

.property-page .slider-range {
    background: var(--accent-color);
    height: 5px;
    position: absolute;
    border-radius: 5px;
}

.property-page .slider-thumb {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -35%);
}

.property-page .filter-sidebar {
    max-height: 150vh;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.property-page .filter-sidebar::-webkit-scrollbar {
    display: none;
}

.property-page .filter-sidebar .map-div {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.property-page .filter-sidebar .map-div img {
    height: 120px;
    object-fit: cover;
    width: 100%;
}

.property-page .filter-sidebar .map-div button {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.property-page .filter-sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.property-page .filter-sidebar .btn-clear {
    color:#fff;
    background:var(--accent-color);
    padding:3px 8px;
    border-radius:5px;
}

.property-page .filter-category {
    margin-bottom: 1.5rem;
}

.property-page .filter-category h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 1rem;
}

.property-page .filter-tags button {
    margin: 0.2rem 0.4rem 0.2rem 0;
    font-size: 12px;
    /* color: #555555; */
}

.property-page .filter-tags button:hover {
    color: var(--bs-btn-active-color) !important;
    background: #555555;
}

.property-page .contentside .btnMap,
.property-page .contentside .btnFilter {
    color: var(--orange-color);
    border: 1px solid var(--orange-color);
    border-radius: 3px;
    font-size: 0.875rem;
}
.property-page .decorated-heading {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
/*--------------------------------------------------------------
# Map Modal Section | Filter Modal Section
--------------------------------------------------------------*/
.map-Modal,
.filter-Modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.map-Modal .map-content,
.filter-Modal .filter-content {
    background: var(--contrast-color);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.filter-Modal .filter-contentbox {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.map-Modal .map-content::-webkit-scrollbar,
.filter-Modal .filter-content::-webkit-scrollbar {
    display: none;
}

/* .map-Modal .map-content img {
    width: 20%;
    margin: 10px auto;
} */

.map-Modal .map-content h5,
.filter-Modal .filter-content h5 {
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 10px;
}

.map-Modal .close-filter {
    font-size: 1.5rem;
    cursor: pointer;
}

/* .map-Modal .map-content span, */
.filter-Modal .filter-content span {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: absolute;
    right: 30px;
    cursor: pointer;
}

/* .map-Modal .map-content a, */
.filter-Modal .filter-content .btnfiltersave{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    margin: 0 auto;
}
@media (max-width: 768px) {

    .map-Modal,
    .filter-Modal {
        width: 90%;
        max-width: 95%;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .map-Modal,
    .filter-Modal {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Property card Section
--------------------------------------------------------------*/
.propertycard {
    position: relative;
    border-radius: 8px;
    margin: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.propertycard:hover {
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.propertycard img {
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    padding: 5px 5px 0 5px;
    height: 220px;
}

.propertycard .arrows {
    width: 20px;
    height: 20px;
    background-size: 10px 10px;
    border-radius: 50%;
    padding: 10px;
}

.propertycard .image-icons {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 3px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.75rem;
}

.propertycard .image-icons .guest-favourite {
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px;
    border-radius: 5px;
}

.propertycard .hover-icons {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 10px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    z-index: 499;
    opacity: 0;
    pointer-events: none;
    width: 96%;
    transition: all 0.3s ease-in-out;
    padding: 5px;
}

.propertycard:hover .hover-icons {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.propertycard .hover-icons .guest-cancellation {
    padding: 3px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.75rem;
    color: #fff;
}

.propertycard .icon-buttons {
    display: flex;
    gap: 10px;
}

.propertycard .icon-btn {
    background: none;
    border: none;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.propertycard .icon-btn i {
    font-size: 0.8rem;
    vertical-align: middle;
}

.propertycard .card-body {
    padding: 5px 15px !important;
    background: #fff;
    border-radius: 8px;
}

.propertycard .price {
    font-size: 1rem;
    color: rgb(34, 34, 34);
    font-weight: bold;
}
.propertycard .price-2 {
    font-size: 1rem;
    color: rgb(34, 34, 34);
    /* font-weight: bold; */
}

.propertycard .original-price {
    font-size: 0.8rem;
    font-weight: 300;
    /* text-decoration: line-through red; */
    text-decoration-line: line-through;
    text-decoration-color: red;
}

.propertycard .rating .badge {
    background-color: var(--background-color) !important;
    color: var(--orange-color);
    font-size: 14px;
    padding: 0;
}

.propertycard .card-title {
    font-weight: 700;
    color: rgb(85, 85, 85);
    line-height: 1.5;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.propertycard .location {
    font-size: 12px;
    color: rgb(85, 85, 85);
}

.propertycard .icon-group {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    gap: 15px;
}
.propertycard .icon-4 {
    gap: 12px !important;
}
.propertycard .icon-5 {
    gap: 10px !important;
}

.propertycard .icon-group .icon-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgb(85, 85, 85);
    font-weight: 700;
    gap: 3px;
}

.propertycard .icon-group .icon-item img {
    width: 20px;
    height: 20px;
}

.propertycard .carousel-control-prev-icon,
.propertycard .carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
    background-size: contain !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9));
}

/*--------------------------------------------------------------
# Unique Properties Section | Liked properties
--------------------------------------------------------------*/
.uniqueProperties .container,
.likedproperties .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.uniqueProperties .button-see-all,
.likedproperties .button-see-all {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    padding: 10px 60px;
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
# hrRegister Section
--------------------------------------------------------------*/
.hrRegister .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.hrRegister .hrRegister-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: var(--contrast-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hrRegister .hrRegister-card img {
    float: right;
    height: 100px;
}

.hrRegister .hrRegister-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    font-size: 18px;
    color: #222;
}

.hrRegister .hrRegister-desc {
    color: var(--orange-color);
    text-align: left;
    font-size: 14px;
}

.hrRegister .hrRegister-desc span {
    font-style: italic;
    color: var(--accent-color);
    font-size: 14px;
}

.hrRegister .hrRegister-title .login-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 12px;
    border-radius: 20px;
    border: none;
}

.hrRegister .hrRegister-title a {
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
    padding: 5px;
    border: 1px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Owner CTA Section
--------------------------------------------------------------*/
#ownerCta {
    background: url('../../assets/img/homeowner-banner.webp') top fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
    color: #fff;
}

#ownerCta .sep-background-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.ownerCta .container {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: calc(100% - 15%);
}

.ownerCta .owner-info {
    text-align: left;
}

.ownerCta h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.ownerCta p {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 25px;
    font-family: var(--default-font);
    text-transform: uppercase;
    font-weight: 600;
}

.ownerCta span {
    font-size: 1rem;
    display: block;
    font-family: var(--default-font);
}

.ownerCta .btn {
    color: var(--orange-color, #ee7624);
    border: 1.5px solid var(--orange-color, #ee7624);
    background: var(--background-color, transparent);
    border-radius: 20px;
    padding: 10px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ownerCta .btn:hover {
    background: var(--orange-color, #ee7624);
    color: #fff;
}

/*--------------------------------------------------------------
# hrOffers Section
--------------------------------------------------------------*/
.hrOffers .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.hrOffers .card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.hrOffers .card:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.hrOffers .card-img-left {
    width: 100%;
    max-width: 100px;
    max-height: 100px;
    border-radius: 10px;
    padding: 20px;
}

.hrOffers .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.hrOffers .card-body h5 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.hrOffers .card-body p {
    color: #696969;
    font-size: 14px;
    text-align: justify;
}

/*--------------------------------------------------------------
# hrInspiration Section
--------------------------------------------------------------*/
.hrInspiration .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.hrInspiration .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    min-height: 380px;
}

.hrInspiration .card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--contrast-color);
}

.hrInspiration .card:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.hrInspiration .card h5 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    font-family: var(--heading-font);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hrInspiration .card img {
    height: 300px;
    object-fit: cover;
}

.hrInspiration .card h6 {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--heading-font);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hrInspiration .card p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    font-family: var(--default-font);
    color: rgb(85, 85, 85);
}

.hrInspiration a {
    color: var(--accent-color);
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Cookie Modal Section
--------------------------------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    background: var(--contrast-color);
    text-align: justify;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1050;
}

.cookie-banner h5 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 16px;
}

.cookie-banner p {
    font-size: 12px;
}

.cookie-banner a {
    font-weight: 700;
    color: #000;
}

.cookie-banner .btn-accept {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 20px;
}

.cookie-banner .btn-customise {
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-size: 12px;
    border-radius: 20px;
}

.cookie-banner .btn-customise:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Cookie Modal Section
--------------------------------------------------------------*/
.cookie-Modal {
    display: none;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.cookie-Modal .cookie-content {
    background: var(--contrast-color);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.cookie-Modal .cookie-contentbox {
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 300px;
}

.cookie-Modal .cookie-content h5 {
    font-weight: 700;
    font-family: var(--heading-font);
}

.cookie-Modal .cookie-content span {
    font-size: 14px;
}

.cookie-Modal .cookie-content p {
    font-size: 14px;
    text-align: justify;
    width: 90%;
}

.cookie-Modal .cookie-content .form-check-input:checked {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.cookie-Modal .cookie-content .cookie-content-footer .btn-customise {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-Modal .cookie-content .cookie-content-footer .btn-accept {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
}

/* Media Query for mobile & Ipad devices */
@media (min-width: 320px) and (max-width: 440px) {
    .cookie-banner {
        max-width: 100% !important;
    }

    .cookie-banner h5 {
        font-size: 14px;
    }

    .cookie-Modal {
        width: 95%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .cookie-Modal {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Review Section
--------------------------------------------------------------*/
.reviews img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
}

.reviews .btnpopup,
.reviewsFilter .btnpopup {
    /* border:1px solid  var(--accent-color); */
    color: var(--background-color);
    padding: 3px;
    border-radius: 5px;
    background: var(--accent-color);
    font-size: 12px;
    cursor: context-menu;
}

.reviews .btn {
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 3px;
    font-size: 12px;
    cursor: context-menu;
}

.reviews select,
.reviewsFilter select {
    padding: 3px;
    font-size: 12px;
}

.reviews select:focus,
.reviewsFilter select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

.reviews p {
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.reviews .reviewtxt-name {
    color: var(--accent-color);
}

.reviews .text-length {
    overflow-y: auto;
    font-size: 14px;
    color: #444444;
    padding-right: 15px;
    text-align: justify;
    height: 100px;
    font-style: italic;
}

.reviews .btn-rating {
    pointer-events: none;
    cursor: default;
}

.reviews .text-length::-webkit-scrollbar {
    width: 6px;
}

.reviews .text-length::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
}

.reviews .text-length::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.reviews .replies_txt {
    font-size: 12px;
    cursor: pointer;
    pointer-events: auto;
}

/*--------------------------------------------------------------
# WishList Section
--------------------------------------------------------------*/
.wishlist .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.wishlist .wishlist-container {
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wishlist h2 {
    font-size: 30px;
    font-family: var(--heading-font);
}

.wishlist p {
    font-size: 14px;
}

/*--------------------------------------------------------------
# career-info Section
--------------------------------------------------------------*/
.career-info .border-primary{
    border-color: var(--accent-color) !important;
}
/*--------------------------------------------------------------
# Group-Booking Section
--------------------------------------------------------------*/
.group-booking .btn-submit{
    background-color: var(--contrast-color);
    color: var(--orange-color);
    border: 1px solid var(--orange-color);
    padding: 10px 20px;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/*--------------------------------------------------------------
# SiteMap Section
--------------------------------------------------------------*/
.sitemap .container {
    max-width: calc(100% - 15%);
    margin: 0 auto;
}

.sitemap h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 14px;
}

.sitemap ul li a {
    color: var(--accent-color) !important;
    font-size: 12px;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Regions Page Section
--------------------------------------------------------------*/
.regions-page .region_count {
    font-size: 14px;
}

.regions-page .region_tab {
    display: inline-block;
    padding: 3px 6px;
    margin: 4px;
    border: 1px solid #444;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    color: #444444;
    transition: all 0.3s ease;
}

.regions-page .region_tab.active {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.regions-page form input[type="text"] {
    font-size: 12px;
    color: #444;
}

.regions-page form input[type="text"]:focus {
    border: 1px solid #ddd;
}

.regions-page .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    text-align: center;
}

.regions-page .card img {
    border-radius: 15px;
    object-fit: cover;
    height: 180px;
    cursor: pointer;
    width: 100%;
}

.regions-page .card p {
    margin: 0;
    font-size: 12px;
    font-family: var(--default-font);
}

/*--------------------------------------------------------------
# FAQ Page Section
--------------------------------------------------------------*/
.faq-page .faq-container {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    gap: 2rem;
    border-radius: 8px;
    position: relative;
}

.faq-page .faq-left {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.faq-page .faq-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-page .faq-left h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.faq-page .faq-left p {
    margin-top: 1rem;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.faq-page .faq-left a {
    color: var(--orange-color);
}

.faq-page .faq-left .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-page .faq-left .btn-group button {
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 8px !important;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    margin: 0;
    max-width: 150px;
    white-space: nowrap;
}

.faq-page .faq-left .btn-group button:hover {
    border-color: #444;
    color: #444;
}

.faq-page .faq-left .btn-group button.active {
    background: var(--accent-color);
    color: #fff;
}

.faq-page .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-page .faq-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.faq-page .faq-item.active {
    background-color: #fff;
    border: 1px solid var(--accent-color);
}

.faq-page .faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.faq-page .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 12px;
    color: #444;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-page .faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

@media (max-width: 440px) {
    .faq-page .faq-container {
        margin: 0 5%;
    }

    .faq-page .faq-left {
        flex: 1 1 220px;
    }

    .faq-page .faq-left h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 440px) and (max-width: 768px) {
    .faq-page .faq-container {
        flex-direction: column;
        margin: 5% 10% !important;
    }

    .faq-page .faq-left {
        flex: 1 1 220px;
    }

    .faq-page .faq-left h1 {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Skeleton Loader Section
--------------------------------------------------------------*/
/* Skeleton loader shimmer animation */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Skeleton loader container */
.skeleton-loader .carousel-placeholder,
.skeleton-loader .price-placeholder,
.skeleton-loader .rating-placeholder,
.skeleton-loader .title-placeholder,
.skeleton-loader .location-placeholder,
.skeleton-loader .cancellation-placeholder {
    background: linear-gradient(90deg,
            #e0e0e0 25%,
            #f0f0f0 50%,
            #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 5px;
}

.skeleton-loader .carousel-placeholder {
    width: 100%;
    height: 179px;
}

.skeleton-loader .price-placeholder {
    width: 120px;
    height: 20px;
}

.skeleton-loader .rating-placeholder {
    width: 50px;
    height: 20px;
}

.skeleton-loader .title-placeholder {
    width: 70%;
    height: 25px;
    margin: 10px 0;
}

.skeleton-loader .location-placeholder {
    width: 50%;
    height: 20px;
}
.bi-heart-fill{
    color: red;
}
/*--------------------------------------------------------------
# Security Deposit Payment
--------------------------------------------------------------*/
.payment-deposit .paydeposit , .payment-deposit .paydeposit:hover{
    color: var(--orange-color);
    border: 1px solid var(--orange-color);
    border-radius: 20px;
    padding: 10px 60px;
    font-size: 0.875rem;
}
.payment-deposit i{
    color: var(--accent-color);
}