/* Unique CSS Class Names */
/* Container to allow horizontal swiping on mobile */
/* html, body {
  overflow-x: hidden !important;
} */



.nav-scroller {
    position: relative;
    z-index: 2;
    height: 3rem;
    overflow-y: hidden;
    overflow-x: auto;
    /* Allows side-scrolling on small screens */
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none !important;
}

.single-services .day-book {
    background: var(--primary-color);
    color: black;
    font-family: var(--primary-font), sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 32px;
    position: relative;
    width: 100%
}

/* Hide scrollbar for Chrome, Safari and Opera */
.nav-scroller::-webkit-scrollbar {
    display: none;
}

.custom-tabs .nav-link {
    color: #333;
    /* Deep dark blue/black text */
    font-weight: 600;
    font-size: 1.5rem;
    padding: 12px 20px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    color: var(--primary-color);
}

/* Active state with the underline */
.custom-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .custom-tabs .nav-link {
        padding: 10px 10px;
        font-size: 0.9rem;
    }
}


.room-details .thumb img {
    border-radius: 10px;
}

.dest-gallery-section {
    background-color: #ffffff;
}

/* The clickable container */
.dest-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 150px;
    /* Adjust this to make the "icon" larger or smaller */
}

/* The Image Container - No longer round */
.dest-icon-wrapper {
    width: 150px;
    /* Icon width */
    height: 150px;
    /* Icon height */
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 'contain' ensures the whole icon is visible, 'cover' fills the box */
    transition: transform 0.3s ease;
}

.dest-title-bottom {
    color: #333333;
    font-family: 'Serif', Georgia, serif;
    font-weight: 500;
    font-size: 0.9rem;
    /* Smaller font for icon style */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover Effect */
.dest-icon-card:hover img {
    transform: translateY(-5px);
    /* Gentle float effect instead of zoom */
}

.dest-icon-card:hover .dest-title-bottom {
    color: #bfa37c;
    /* Optional: adds a luxury gold color on hover */
}

@media (max-width: 768px) {
    .dest-icon-wrapper {
        width: 70px;
        /* Even smaller icons for mobile */
        height: 70px;
    }

    .dest-title-bottom {
        font-size: 10px;
        margin-top: 5px;
    }
}





.unique-carousel-wrapper {
    background: white;

}

/* Card */
.unique-item {
    background: white;

    border-radius: 18px;
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
    height: 100%;
}

/* Icon */
.unique-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Title */
.unique-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Text */
.unique-text {
    font-size: 14px;
    color: #555;
    opacity: 0.85;
}

/* Nav Buttons */
.unique-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    z-index: 2;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unique-nav-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.unique-prev {
    left: -3px;
}

.unique-next {
    right: -3px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .unique-prev {
        left: 0;
    }

    .unique-next {
        right: 0;
    }
}

/* ===== Client Diaries Carousel ===== */
.client-diaries-section {
    background: #fff;
}

.client-diaries-carousel .item {
    display: flex;
    justify-content: center;
}

.client-diaries-carousel img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.client-diaries-carousel img:hover {
    transform: scale(1.05);
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 50% !important;
}

/* Navigation Buttons */
.carousel-prev-btn,
.carousel-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}

.carousel-prev-btn:hover,
.carousel-next-btn:hover {
    opacity: 1;
}

.carousel-prev-btn {
    left: -20px;
}

.carousel-next-btn {
    right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .client-diaries-carousel img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {

    .carousel-prev-btn,
    .carousel-next-btn {
        display: none;
    }
}


.room-info-bar {
    background: transparent;
}

.room-info-item {
    background-color: rgba(255, 183, 3, 0.1);
    color: #333;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.room-info-icon {
    font-size: 16px;
    color: var(--primary-color);
}

.room-info-tooltip {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.room-info-brochure {
    padding: 10px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    gap: 8px;
    transition: all 0.3s ease;
}

.room-info-brochure:hover {
    background: var(--primary-color);
    color: #fff;
}


/* Visible image */
.img-room {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Fullscreen overlay */
.swiper-room-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: none;
}

/* Swiper */
.room-vertical-swiper {
    width: 100%;
    height: 100vh;
}

.room-vertical-swiper img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
}

/* Close button */
.swiper-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    color: #fff;
    font-size: 36px;
    border: none;
    cursor: pointer;
    z-index: 10;
}

/* Premium Horizontal Swiper Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}


.stayscape-partner-benefits {
    background-color: #f9faef;
    padding: 80px 0;
}

.stayscape-benefit-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.villa-stats-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-image: url("your-image.jpg");
    /* replace image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.villa-stats-overlay {
    position: absolute;
    inset: 0;
    background: black;
}

.villa-stats-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.villa-stat-box h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.villa-stat-box p {
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Tablet */
@media (max-width: 991px) {
    .villa-stat-box h2 {
        font-size: 56px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .villa-stats-container {
        flex-direction: column;
    }

    .villa-stat-box h2 {
        font-size: 48px;
    }

    .villa-stat-box p {
        font-size: 16px;
    }
}


.tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 60px;
    border: 2px solid #ddd;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

.tab-btn.active {
    background: burlywood;
    border-color: burlywood;
    color: #fff;
}


.video-carousel-wrapper {
    padding: 40px 0;
}

.video-slide {}

.video-slide video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    background: #000;
}






/* Hide owl carousel on desktop */
.owl-carousel {
    display: block;
}

/* Mobile view - show owl carousel */
@media (max-width: 767px) {
    .desktop-grid {
        display: none !important;
    }

    .owl-carousel {
        display: block;
    }

    .uq-nav-container {
        display: block !important;
    }


    .video-slide video {

        height: 300px;

    }
}

/* Desktop view - show grid */
@media (min-width: 768px) {
    .mobile-slider {
        display: none !important;
    }

    .uq-nav-container {
        display: none !important;
    }

}

.heading,
.section-title h2,
.h2-title,
.about-title h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
    position: relative;
    line-height: 1.2 !important;
}

@media (max-width: 768px) {

    .heading,
    .section-title h2,
    .h2-title,
    .about-title h2 {
        font-size: 24px !important;
    }
}

/* adarsh end */
.video_heading {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

@import url(https://fonts.googleapis.com/css?family=Anton&display=swap);

.sbuttons {
    bottom: 10%;
    position: fixed;
    margin: 1em;
    right: 27px;
    z-index: 1000;
}

.sbutton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    margin: 15px auto;
    box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.sbutton img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.sbutton:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.sbutton.whatsapp {
    background: #25D366;
}

.sbutton.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

[tooltip]:before {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    background-color: #585858;
    color: #fff;
    content: attr(tooltip);
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    padding: 5px 10px;
    margin-left: 10px;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    transition: opacity 0.3s;
    z-index: 10;
}

[tooltip]:hover:before {
    visibility: visible;
    opacity: 1;
}

.contact-form .contact-form-input {
    height: 56px !important;
}

.form-check-input .contact-form-input {
    height: 30px !important;
}


.avl-form {
    border-radius: 10px;
}

.avl-btn {
    background-color: burlywood !important;
    border-radius: 10px !important;
    margin-bottom: 30px;
}

/* Hide all browser-specific video controls */
video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

/* Ensure the video doesn't show a pointer cursor */
.carousel-video {
    pointer-events: none;
    /* Prevents users from clicking to show controls */
    width: 100%;
    height: auto;
    display: block;
}




/* villa card */
.room-specs {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    font-family: 'Serif', Georgia, serif;
    /* Matching your luxury theme */
    white-space: nowrap;
}

.spec-item i {
    font-size: 1rem;
}

/* Ensure the card content flows well */


.room-item-custom-truncate {
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Unique CSS for Villa Location Meta */
.villa-location-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 4px 0;
    /* Optional: creates a very subtle bottom line to separate from specs */

}

.villa-location-meta .location-text {
    font-size: 0.82rem;
    color: #555555;
    /* Soft dark grey */
    font-family: 'Serif', Georgia, serif;
    /* Elegant font family */
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.villa-location-meta .location-text i {
    color: #0c0b09;
    /* Deep black to match your icons */
    margin-right: 8px;
    font-size: 0.9rem;
    /* Subtle bounce effect on the pin icon */
    transform: translateY(-1px);
}

/* Hover effect for the whole card link */
.single-services:hover .location-text {
    color: #000000;
}

.single-services:hover .location-text i {
    color: #000000;
    /* Optional: Pin changes to gold/tan on hover */
}


/* Container sizing */
.video-slide {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* background: #000; */
}

/* Default Overlay (Dark for non-center items) */
.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Container for the text info */
.villa-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 25px 20px;
    z-index: 8;
    /* Sits above video, below center play button */
    color: white;
    text-align: left;
    /* Gradient ensures white text is visible on light video parts */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    /* Allows clicks to pass through to the video/controls */
}

/* Villa Title */
.villa-video-info .v-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.villa-video-info .v-title a {
    color: white;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Location Text */
.villa-video-info .v-location {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 2px 0 12px 0;
    opacity: 0.9;
}

/* Meta Row (BHK, Guests, Details) */
.villa-video-info .v-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.villa-video-info .v-meta-item {
    font-size: 1rem;
    font-weight: 700;
}

.villa-video-info .v-dot {
    font-size: 1.2rem;
}

.villa-video-info .v-details {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    pointer-events: auto;
    /* Re-enable clicks for the link */
}

.villa-video-info .v-details i {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .villa-video-info .v-title {
        font-size: 1.3rem;
    }

    .villa-video-info .v-location {
        font-size: 0.9rem;
    }

    .villa-video-info .v-meta-item,
    .villa-video-info .v-details {
        font-size: 0.85rem;
    }
}

/* Center Slide Overlay (Lighten when playing) */
.owl-item.center .video-controls-overlay {
    background: rgba(0, 0, 0, 0.1);
}

/* Icons Styling */
.control-btn {
    position: absolute;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.left-top {
    top: 15px;
    left: 15px;
}

.right-top {
    top: 15px;
    right: 15px;
}

.center-mid i {
    font-size: 3.5rem;
    opacity: 0.9;
    transition: transform 0.2s;
}

/* Progress Bar */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
}

.video-progress-bar {
    width: 0%;
    height: 100%;
    background: #bfa37c;
    /* Luxury Gold */
    transition: width 0.1s linear;
}

/* Visual focus for non-center items */
.owl-item:not(.center) {
    transform: scale(0.9);
    opacity: 1;
    transition: all 0.4s ease;
}


/* Container Spacing */
.villa-card-custom {
    padding: 20px;
    background: #fff;
    text-align: left;
}

/* Villa Title */
.villa-name-main {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.villa-name-main a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.villa-name-main a:hover {
    color: var(--primary-color);
}

/* Location - Clean Sans Serif */
.villa-loc-subtext {
    font-size: 18px;
    color: #333;
    font-family: Arial, sans-serif;
    text-transform: capitalize;
}

/* Price Section */
.villa-price-box {
    margin-bottom: 20px;
}

.villa-price-box .price-from {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.villa-price-box .price-amount {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.villa-price-box .price-unit {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.villa-price-box .price-tax-note {
    font-size: 16px;
    color: #444;
    margin-top: 0px;
}

/* Specifications Bar (Rounded Border Logic) */
.villa-specs-bar {
    display: flex;
    border: 1px solid rgba(255, 183, 3, 0.3);
    /* Subtle orange border */
    border-radius: 12px;
    background-color: #fffaf0;
    /* Subtle orange background tint */
    overflow: hidden;
}

.villa-specs-bar .spec-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    border-right: 1px solid rgba(255, 183, 3, 0.3);
}

.villa-specs-bar .spec-col:last-child {
    border-right: none;
}

.villa-specs-bar .spec-col i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 8px;
}

.villa-specs-bar .spec-label {
    font-size: 10px;
    color: black;
    font-weight: 700;
}

/* Luxury Booking Button */
.villa-book-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.villa-book-btn:hover {
    background-color: #000;
    color: #ffffff;
}

/*  */

/* form css searchbar */
/* Container */
.booking-integration-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

/* The Search Bar Trigger */
.villa-search-bar {
    background: #ffffff;
    border: 1.5px solid #111;
    border-radius: 50px;
    padding: 14px 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.villa-search-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.search-content {
    font-size: 1.1rem;
    color: #333;
    font-family: 'Georgia', serif;
}

.search-content i {
    margin-right: 15px;
    color: black;
}

/* Typing Cursor Animation */
.cursor {
    font-weight: bold;
    color: black;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Close Button */
.btn-close-form {
    background: none;
    border: none;
    color: #888;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-close-form:hover {
    color: #000;
}

/* Form entrance animation */
#villa-actual-form-container {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*  */


/* slider all image show  */

/*  */

.show-all-photos-btn i {
    font-size: 20px;
    color: #ffffff;
}

.show-all-photos-btn span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.show-all-photos-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}




/*  */

/* rrom video */

.media-buttons-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex !important;
    /* Forces horizontal layout */
    flex-direction: row !important;
    /* Ensures they don't stack */
    align-items: center;
    gap: 10px;
    /* Space between buttons */
    z-index: 2;
    width: auto !important;
    /* Prevents container from taking full width */
}

/* Individual Button Fixes */
/* Individual Button Fixes */
.media-btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    display: inline-flex !important;
    /* Keeps icon and text together */
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    width: auto !important;
    /* Prevents buttons from stretching */
    margin: 0 !important;
    /* Removes any theme-forced margins */
}

.media-btn span {
    display: inline-block !important;
    white-space: nowrap !important;
    /* Prevents text from wrapping to 2nd line */
}

.media-btn:hover {
    background: #000 !important;
    transform: translateY(-2px);
}

/* Mobile Fix: If the screen is too small, they stay in one line but smaller */
@media (max-width: 480px) {
    .media-btn {
        padding: 4px 6px !important;
        font-size: 10px !important;
    }

    .media-btn i {
        font-size: 14px;
    }
}


.video-open-trigger,
.show-all-photos-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.video-open-trigger:hover,
.show-all-photos-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

/* Fixed Video Popup Styles */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    /* Controlled by JS */
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    /* Limits size to middle of screen */
    background: #000;
    border-radius: 12px;
    line-height: 0;
    /* Removes bottom gap */
}

.video-popup-content video {
    width: 100%;
    max-height: 80vh;
    /* Prevents video from overflowing screen height */
    border-radius: 12px;
    display: block;
}

.video-close-btn {
    position: absolute;
    top: -45px;
    right: -10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/*  */



/* tab css */


/* Background for the section (optional if your page is already dark) */
.border_tab {
    border: 2px solid var(--primary-color) !important;
    border-radius: 50px !important;
}

.custom-pill-tabs {
    gap: 15px;
    /* Space between tabs */
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    /* Allows scrolling on mobile */
    padding-bottom: 10px;
}

/* Base style for all tab buttons */
.custom-pill-tabs .nav-link {
    background-color: transparent;
    color: black;
    border: 1px solid #444;
    /* Dark border for unselected tabs */
    border-radius: 50px;
    /* Makes them pill-shaped */
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Active Tab Style (Matches your image) */
.custom-pill-tabs .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
}

/* Hover effect */
.custom-pill-tabs .nav-link:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hide scrollbar for the tab row on desktop */
.custom-pill-tabs::-webkit-scrollbar {
    display: none;
}

/* Content Area Styling */
.custom-tab-body {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 20px;
}

/* Color Variable to match your tabs */
.text-gold {
    color: var(--primary-color);
}

.checkin-content-wrapper {
    /* padding: 10px; */
}

/* List Styling */
.checkin-list {
    list-style: none;
    padding: 0;
}

.checkin-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.checkin-list li i {
    font-size: 24px;
    color: #b38e5d;
    background: rgba(179, 142, 93, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.checkin-list li strong {
    display: block;
    font-size: 16px;
    color: black;
    margin-bottom: 2px;
}

.checkin-list li span {
    font-size: 14px;
    color: #bbb;
}

/* Notice Box on the right */
.important-notice-box {
    background: #252525;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #b38e5d;
    text-align: center;
}

.important-notice-box i {
    font-size: 40px;
    color: #b38e5d;
    margin-bottom: 15px;
}

.important-notice-box h5 {
    color: #fff;
    margin-bottom: 10px;
}

.important-notice-box p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

.btn-contact-manager {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #b38e5d;
    color: #b38e5d;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contact-manager:hover {
    background: #b38e5d;
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .important-notice-box {
        margin-top: 30px;
    }
}


.dining-tags {
    display: flex;
    gap: 15px;
}

.tag {
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag.veg {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid #28a745;
}

.tag.non-veg {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Feature Layout */
.meal-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: 0.3s;
}

.meal-feature:hover {
    background: rgba(255, 255, 255, 0.07);
}

.meal-feature i {
    font-size: 28px;
    color: #b38e5d;
}

.meal-feature h5 {
    color: black;
    margin-bottom: 5px;
    font-size: 17px;
}

.meal-feature p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

/* Menu Highlight Card */
.menu-highlight-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #b38e5d;
    position: relative;
    overflow: hidden;
}

.menu-highlight-card h4 {
    color: #b38e5d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-menu {
    list-style: none;
    padding: 0;
}

.mini-menu li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #444;
    color: #ddd;
    font-size: 15px;
}

.mini-menu .price {
    color: #b38e5d;
    font-size: 13px;
    font-weight: 700;
}

.small-note {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
    font-style: italic;
}




/* booking form */



/*  */

/* bedroom */


.bedroom-owl-section {
    padding: 40px 0;
}

.bedroom-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgb(182, 181, 181);

}

.bedroom-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.bedroom-text {
    padding: 18px;
    text-align: center;
}

.bedroom-text h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.bedroom-text p {
    font-size: 14px;
    color: #666;
}

/* Nav buttons */
.bedroom-owl .owl-nav button {
    position: absolute;
    top: 40%;
    background: #000 !important;
    color: #fff !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.bedroom-owl .owl-prev {
    left: -20px;
}

.bedroom-owl .owl-next {
    right: -20px;
}



/* share popup */
/* Share Button */
#floating-share-btn {
    position: absolute;
    right: -124px;
    top: -1%;
    padding: 10px 20px;
    /* height: 50px; */
    /* background: black; */
    color: black;
    border: 2px solid black;
    border-radius: 5px;
    z-index: 2;
    cursor: pointer;

    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

#floating-share-btn:hover {
    /* padding-right: 10px;
    width: 105px; */
    color: white;

}

/* 2. Modal Overlay (Blurred Background) */
.share-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    /* Controlled by JS */
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* 3. The Modal Card */
.share-modal {
    background: #ffffff;
    width: 90%;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 4. Modal Header & Close Button */
.share-header {
    padding: 18px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}

.share-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.modal-close-btn {
    background: #eee;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #ff4d4d;
    color: white;
    transform: rotate(90deg);
}

/* 5. Social Grid Styling */
.share-body {
    padding: 25px;
    text-align: center;
}

.room-title-share {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

.social-grid {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.social-item {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 12px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.social-item:hover {
    transform: translateY(-5px);
}

.social-item i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp i {
    background: #25D366;
}

.facebook i {
    background: #1877F2;
}

.instagram i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* 6. Copy Link Section */
.copy-link-section {
    display: flex;
    align-items: center;
    background: #f4f6f8;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 6px;
    margin-top: 10px;
}

.copy-link-section input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 12px;
    font-size: 13px;
    color: #666;
    outline: none;
    width: 100%;
}

#copy-btn {
    background: #06453e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

#copy-btn:hover {
    background: #0a6b61;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .share-modal {
        width: 95%;
    }

    #floating-share-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

dl,
ol,
ul {
    margin-bottom: 0 !important;
}


/* about us */
:root {
    --brand-color: #e66b55;
    /* Warm accent color from your image */
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-soft: #fdfaf7;
}

.about-column {
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
}

/* Icon Styling */
.icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    color: var(--brand-color);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.status-dot {
    position: absolute;
    top: 0;
    right: -2px;
    width: 20px;
    height: 20px;
    background-color: var(--brand-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-soft);
}

/* Text Styling */
.content h3 {
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', serif;
    /* Suggesting a serif for luxury feel */
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
}

.content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 320px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .info-card {
        gap: 15px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .content h3 {
        font-size: 1.1rem;
    }
}

.content p {
    display: block !important;
}

.brd {
    border: 1px solid var(--input-border-color) !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
}


.sticky-form {
    position: sticky;
    top: 120px;
    /* distance from top after scroll */
}


.policy-container {

    font-family: 'Inter', sans-serif;
    /* Clean sans-serif font */
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #5a121c;
    /* Deep maroon/burgundy from the image */
}

.policy-header i {
    font-size: 1.6rem;
    font-weight: bold;
}

.policy-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* Custom bullet points to match the image */
.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #000;
}

/* Bold the specific times for readability */
.policy-list li strong {
    font-weight: 800;
}


/* Bedroom Card */
.bedroom-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    overflow: hidden;
    margin: 15px 10px;
    transition: 0.3s;
}


/* Image */
.bedroom-image {
    height: 150px;
    overflow: hidden;
}

.bedroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.bedroom-card:hover img {
    transform: scale(1.1);
}

/* Content */
.bedroom-content {
    padding: 5px 15px;
}

.bedroom-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bedroom-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===== NAV BUTTON ===== */
.bedroom-slider {
    position: relative;
}

.bedroom-slider .owl-nav {
    display: block !important;
}

.bedroom-slider .owl-nav button {
    position: absolute;
    top: 45%;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #007bff !important;
    color: #fff !important;
    border: none;
    font-size: 18px;
    z-index: 999;
    transition: 0.3s;
}

.bedroom-slider .owl-nav button:hover {
    background: #0056b3 !important;
}

/* Left Button */
.bedroom-slider .owl-prev {
    left: -20px;
}

/* Right Button */
.bedroom-slider .owl-next {
    right: -20px;
}

/* Dots */
.bedroom-slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.bedroom-slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px;
}

.bedroom-slider .owl-dot.active span {
    width: 25px;
    background: #007bff;
    border-radius: 10px;
}

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

    .bedroom-image {
        height: 138px;
    }

    .bedroom-slider .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .bedroom-slider .owl-prev {
        left: 0;
    }

    .bedroom-slider .owl-next {
        right: 0;
    }

    .bedroom-card {
        margin: 2px 5px;
    }
}

/* Adjust the 0.5s to 0.3s for an even faster transition */
.slick-fade .slick-slide {
    transition: opacity 0.5s ease-in-out !important;
}


.uq5-slider-container {
    position: relative;
}

.custom-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 99;
    pointer-events: none;
    /* Allows clicking through the container */
}

.nav-btn {
    pointer-events: all;
    /* Re-enables clicking on the actual buttons */
    background: var(--primary-color);
    /* Maroon theme color */
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: #000;
    transform: scale(1.1);
}

.prev-btn {
    margin-left: 10px;
}

.next-btn {
    margin-right: 10px;
}




.video-carousel-wrapper {
    position: relative;
}

/* Hide carousel until fully initialized */
.room-card-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.room-card-slider.owl-loaded {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s;
}

/* Main container overflow fix */
.services-thumb {
    position: relative;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0;
}

/* Ensure stage doesn't show next slides - CRITICAL FIX */
.room-card-slider .owl-stage-outer {
    overflow: hidden !important;
    position: relative;
}

/* CRITICAL: Add overflow to each item wrapper */
.room-card-slider .owl-item {
    overflow: hidden !important;
    /* Prevents image from showing outside */
    float: left;
    backface-visibility: hidden;
}

/* Add overflow to item class as well */
.room-card-slider .item {
    overflow: hidden !important;
    position: relative;
    border-radius: 16px 16px 0 0;
}

/* Image styling with proper containment */
.room-card-slider .item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

/* Image hover effect - stays contained */
.room-card-slider .item:hover img {
    transform: scale(1.1);
    /* Scale effect stays inside container */
}

/* Navigation */
.room-card-slider .owl-nav {
    margin: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.services-thumb:hover .room-card-slider .owl-nav {
    opacity: 1;
}

.room-card-slider .owl-nav button {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    color: #333 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: none !important;
}

.room-card-slider .owl-nav button.owl-prev {
    left: 10px !important;
}

.room-card-slider .owl-nav button.owl-next {
    right: 10px !important;
}

/* Additional safeguards */
.room-card-slider .owl-stage {
    position: relative;
}

/* Ensure no visibility of adjacent items */
.room-card-slider .owl-item.cloned {
    overflow: hidden !important;
}

/* Nav container spans the width of the carousel */
.video-custom-nav {
    position: absolute;
    top: 55%;
    /* Centered vertically relative to the carousel */
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 0;
    /* Ensures it stays above the video but below popups */
    pointer-events: none;
    /* Allows you to click the video behind the empty space */
}

/* Button styling */
.v-btn-prev,
.v-btn-next {
    pointer-events: all;
    /* Re-enables clicking for the buttons themselves */
    background: #5a121c;
    /* Your Maroon Theme Color */
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: 0 -20px;
    /* Pulls buttons slightly outside the carousel edges */
}

.v-btn-prev:hover,
.v-btn-next:hover {
    background: #000;
    transform: scale(1.1);
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {

    .v-btn-prev,
    .v-btn-next {
        width: 35px;
        height: 35px;
        margin: 0 5px;
        /* Brings buttons inside on small screens */
    }
}


.video-carousel-wrapper {
    position: relative;
}

/* Navigation Container */
.video-custom-nav {
    position: absolute;
    top: 55%;
    /* Align with the vertical center of the videos */
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
    /* Ensure it stays above video overlays */
    pointer-events: none;
    /* Allows you to click the video area through the container */
}

/* Individual Button Styles */
.v-nav-btn {
    pointer-events: all;
    /* Re-enable clicks for the buttons */
    background: var(--primary-color);
    /* Your Maroon Theme Color */
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin: 0 -25px;
    /* Pulls buttons slightly outside the carousel */
}

.services-sidebar .sidebar-widget {
    border-radius: 20px;
}

.service-detail-contact {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 30px;
}

.service-detail-contact a {
    font-size: 18px !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    display: block !important;
    text-transform: capitalize;
    font-weight: 600 !important;
    text-align: center;
    width: 100%;
}

.service-detail-contact a:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.v-nav-btn:hover {
    background: #000;
    transform: scale(1.1);
}

.v-nav-btn i {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .v-nav-btn {
        margin: 0 10px;
        /* Keep buttons inside the screen on tablets/mobile */
        width: 40px;
        height: 40px;
    }
}

/* Specifically target the checkbox to override the 56px height */
/* .required .form-check{
display: none !important;
} */


/* resposnive */
@media (max-width: 767px) {
    .tab-btn {
        padding: 5px 26px;
    }

    .tabs {
        gap: 5px;
    }

    .video-slide video {
        height: 450px;
    }

    .sbutton {
        width: 50px;
        height: 50px;
    }

    .sbuttons {
        bottom: 13%;
        right: 1px;

    }

    .logo img {
        width: 93.5px !important;
    }

    .search-content {
        font-size: 10px;
    }

    .heading {
        font-size: 40px;
    }

    #floating-share-btn {
        width: 91px;
        height: 48px;
        font-size: 16px;
    }

    .services-sidebar .sidebar-widget {
        margin: 10px;
    }

    .services-area {
        padding-top: 20px !important;
        /* reduce as you want */
    }

    .bedroom-slider .owl-stage {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .video-custom-nav {
        display: none;
    }

    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        display: none;
    }

    .room-card-slider .item img {
        height: 180px;
    }

    .villa-specs-bar .spec-col i {
        font-size: 0.8rem;
    }

    .villa-card-custom {
        padding: 10px;
    }

    .villa-price-box {
        margin-bottom: 10px;
    }

    .services-content h4 {
        font-size: 15px;
    }

    .villa-price-box .price-from {
        font-size: 15px;

    }

    .villa-price-box .price-amount {
        font-size: 17px;

    }

    .villa-price-box .price-tax-note {
        font-size: 15px;

    }

    .villa-price-box .price-unit {
        font-size: 15px;

    }

    .media-buttons-container {
        gap: 4px;
    }

    .media-buttons-container {
        bottom: 7px;
        right: 7px;
    }

    .show-all-photos-btn span {
        font-size: 10px;

    }

    .four_img {
        display: none;
    }

    .menu-area {
        padding: 0px 0px !important;
    }

    .menu-area {
        padding-top: 12px !important;
    }

    .room-info-item {
        background-color: #f4ebe3;
        color: #5b3a1d;
        padding: 4px 5px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 500;
        gap: 3px;
    }

    .room-info-brochure {
        padding: 3px 5px;
        border: 1px solid #8b5e34;
        border-radius: 6px;
        color: #8b5e34;
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
        gap: 3px;
        transition: all 0.3s ease;
    }

}



/*  */


.hide-btn {
    display: none !important;
}

.slider-content {
    display: none !important;
}

.room-card-slider {
    opacity: 1 !important;
}

/* Global Heading Size Reduction & Symmetry */
.section-title h2,
h2.section-title,
.about-title h2,
h2.reasons-title {
    font-size: 32px !important;
    color: #000 !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
}

/* Allow general h1/h2 to scale without forcing color */
h2,
h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.section-title h3,
h3.section-title,
h3 {
    font-size: 26px !important;
    line-height: 1.2 !important;
}

@media (max-width: 767px) {

    .section-title h2,
    h2.section-title,
    .about-title h2,
    h2.reasons-title,
    h2,
    h1 {
        font-size: 24px !important;
    }

    .section-title h3,
    h3.section-title,
    h3 {
        font-size: 22px !important;
    }
}

/* Fix Footer Link & Text Visibility for Beige Theme */
.footer-bg {
    background-color: #fff5eb !important;
    background-image: none !important;
    border-top: 4px solid var(--primary-color);
    color: #444 !important;
}

.footer-bg p, .footer-bg span, .footer-bg li {
    color: #555 !important;
}

.footer-bg a,
.footer-bg .footer-link a {
    color: #333 !important;
}

.footer-bg a:hover,
.footer-bg .footer-link a:hover {
    color: var(--primary-color) !important;
}

.footer-bg h1,
.footer-bg h2,
.footer-bg h3,
.footer-bg h4,
.footer-bg h5,
.footer-bg h6 {
    color: #1a1a1a !important;
}

.copyright-wrap {
    background-color: #ffe6cc !important;
    border-top: 1px solid rgba(255, 140, 0, 0.2) !important;
    color: #444 !important;
}

/* Smaller Header Bar */
.menu-area {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.second-menu {
    padding: 5px 0 !important;
}

/* Main Menu Items */
.main-menu ul li a {
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Responsive Slider Variables */
@media (max-width: 1024px) {
    .single-slider {
        background-image: var(--bg-tablet, var(--bg-desktop)) !important;
    }
}

@media (max-width: 767px) {
    .single-slider {
        background-image: var(--bg-mobile, var(--bg-tablet, var(--bg-desktop))) !important;
    }
}

/* Review Form Custom Styles */
.custom-review-input {
    background-color: #fff6eb !important; /* Very light orange tint */
    border: 1px solid rgba(255, 153, 0, 0.2) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    width: 100% !important;
    color: #333 !important;
    min-height: 120px;
    font-family: inherit;
}
.custom-review-input:focus {
    outline: none !important;
    border-color: #ff9900 !important;
    box-shadow: 0 0 8px rgba(255, 153, 0, 0.2) !important;
}
.custom-submit-review-btn {
    background-color: #ff8400 !important; /* A different, slightly deeper orange */
    color: #ffffff !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.custom-submit-review-btn:hover:not(:disabled) {
    background-color: #111 !important; /* Keep hover consistent with other buttons */
    color: #ff8400 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.custom-submit-review-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Slider Exact Heights */
section .slider-bg,
section .single-slider {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (min-width: 992px) {
    section .slider-bg,
    section .single-slider {
        min-height: 700px !important;
        height: 700px !important;
    }
}

/* Mobile Adjustments for Room Details */
@media (max-width: 767px) {
    /* Amenities */
    .amenities-list span {
        font-size: 14px !important;
    }
    .amenities-list h3 {
        font-size: 20px !important;
    }
    .amenities-list img {
        width: 20px !important; /* Scale icons down slightly too */
    }

    /* Nav Pills */
    .custom-pill-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 8px !important;
        padding-bottom: 5px; 
    }
    .custom-pill-tabs::-webkit-scrollbar {
        height: 4px;
    }
    .custom-pill-tabs::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 4px;
    }
    .custom-pill-tabs .nav-item {
        white-space: nowrap !important;
    }
    .custom-pill-tabs .nav-link {
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
        margin-bottom: 0 !important;
    }
}


@media (max-width: 1600px) {

    section .slider-bg,
    section .single-slider {
        min-height: 650px !important;
    }
}

@media (max-width: 1200px) {

    section .slider-bg,
    section .single-slider {
        min-height: 550px !important;
    }
}

@media (max-width: 1024px) {

    section .slider-bg,
    section .single-slider {
        min-height: 460px !important;
    }
}

/* Comprehensive Mobile Fixes */
@media (max-width: 1199px) {

    /* Mobile Menu Fixes for all tablets and phones */
    header {
        position: relative;
        z-index: 9999 !important;
    }

    .menu-mobile {
        z-index: 9999 !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .menu-mobile .navbar-collapse {
        background: #fff !important;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 12px 15px;
        margin: 0 !important;
    }

    #menu-mobile-nav .menu-title {
        margin-bottom: 8px !important;
        padding-bottom: 4px !important;
        font-size: 15px !important;
    }

    #menu-mobile-nav .menu-title.mt-20 {
        margin-top: 10px !important;
    }

    #menu-mobile-nav ul li a {
        color: #000 !important;
        padding: 6px 0 !important;
        font-size: 14px !important;
    }
    
    #menu-mobile-nav ul li {
        margin-bottom: 2px !important;
    }
    }
}

@media (max-width: 767px) {
    .menu-area {
        padding: 10px 15px !important;
        border-radius: 15px !important;
        width: auto !important;
    }

    .logo a {
        font-size: 20px !important;
    }

    .s-slider-content h2 {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .s-slider-content p {
        font-size: 14px !important;
    }

    section .slider-bg,
    section .single-slider {
        min-height: 500px !important;
        height: 100vh !important;
        max-height: 600px !important;
        background-position: center center !important;
    }

    footer .row {
        width: 100%;
    }
}

.profile .unique-carousel-wrapper h4.text-center {
    color: var(--primary-color);
}