/********** Template CSS **********/
:root {
    --primary: #85A98D;
    --light: #F1F8FF;
    --dark: #2F3D46;
    --bs-primary: #85A98D;
    --bs-dark: #2F3D46;
    --bs-primary-rgb: 133, 169, 141;
    --bs-dark-rgb: 47, 61, 70;
}

body {
    font-family: 'Open Sans', sans-serif;
}

.new-font-family {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
}

/* Global Bootstrap Overrides for Header/Footer and Utilities */
.bg-primary { background-color: var(--primary) !important; }
.text-dark { color: var(--dark) !important; }
.bg-dark { background-color: var(--dark) !important; }
.btn-dark {
    background-color: var(--dark) !important;
    border-color: var(--dark) !important;
    color: #fff !important;
}
.btn-dark:hover {
    background-color: #1f292f !important;
    border-color: #1f292f !important;
}
.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 20px;
    bottom: 90px;
    z-index: 9999;
    width: 48px !important;
    height: 48px !important;
    background-color: #2F3D46 !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    text-align: center;
    line-height: 48px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(47, 61, 70, 0.4) !important;
    border: none !important;
    padding: 0 !important;
    overflow: visible !important;
    font-size: inherit;
    text-transform: none;
}

.back-to-top:hover {
    background-color: #1f2a30 !important;
    color: #FFFFFF !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(47, 61, 70, 0.5) !important;
}

.back-to-top:before,
.back-to-top:after {
    display: none !important;
    content: none !important;
}

.back-to-top i {
    font-size: 20px;
    line-height: 48px;
}

/*** Global Section Spacing ***/
.container-xxl.py-5,
.container-fluid.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Headings Color */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Primary color for specific headings */
.text-primary {
    color: var(--primary) !important;
}

/* Icons color */
i.text-primary,
.fa.text-primary {
    color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .container-xxl.py-5,
    .container-fluid.py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 575.98px) {
    .container-xxl.py-5,
    .container-fluid.py-5 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
}

/*** Date Input Styling for Mobile ***/
input[type="date"].form-control {
    min-height: 48px;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

/* Mobile specific date input styling */
@media (max-width: 767.98px) {
    input[type="date"].form-control {
        min-height: 50px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
    }
    
    input[type="date"].form-control::-webkit-calendar-picker-indicator {
        font-size: 1.5rem;
    }
}

/* Form floating date input fix */
.form-floating > input[type="date"].form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > input[type="date"].form-control:focus ~ label,
.form-floating > input[type="date"].form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}


/*** Spinner / Loader ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.loader {
    width: 44.8px;
    height: 44.8px;
    color: var(--primary);
    position: relative;
    background: radial-gradient(11.2px, currentColor 94%, #0000);
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(10.08px at bottom right, #0000 94%, currentColor) top left,
                radial-gradient(10.08px at bottom left, #0000 94%, currentColor) top right,
                radial-gradient(10.08px at top right, #0000 94%, currentColor) bottom left,
                radial-gradient(10.08px at top left, #0000 94%, currentColor) bottom right;
    background-size: 22.4px 22.4px;
    background-repeat: no-repeat;
    animation: loader 1s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes loader {
    33% {
        inset: -11.2px;
        transform: rotate(0deg);
    }
    66% {
        inset: -11.2px;
        transform: rotate(90deg);
    }
    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Button animation - NOT for footer links */
.btn:not(.footer .btn-link):before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: block;
    transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.btn:not(.footer .btn-link):after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    border-radius: 50%;
    display: block;
    transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
    opacity: 0.6;
}

.btn.btn-primary:not(.footer .btn-link):after {
    background-color: rgba(0, 0, 0, 0.5);
}

.btn.btn-light:not(.footer .btn-link):after {
    background-color: rgba(133, 169, 141, 0.7);
}

.btn.btn-secondary:not(.footer .btn-link):after {
    background-color: rgba(0, 0, 0, 0.5);
}

.btn:not(.footer .btn-link):hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn:not(.footer .btn-link):hover:before {
    top: -35%;
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn:not(.footer .btn-link):hover:after {
    top: -45%;
    opacity: 0.8;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn:not(.footer .btn-link):active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn.btn-primary {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn.btn-light:hover {
    color: var(--primary);
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
/* Sticky Header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

/* Header Logo - Fix for long hotel name */
.navbar-brand h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    max-width: 100%;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.navbar-brand h1 .text-primary {
    color: var(--primary) !important;
}

@media (max-width: 991.98px) {

    /* Keep hotel name and hamburger button on same line */
    .navbar .navbar-brand {
        flex: 1;
        min-width: 0;
        margin-right: 8px;
        order: 0;
    }

    .navbar .navbar-brand h1 {
        font-size: 1.15rem;
        line-height: 1.3;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 400;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }

    .navbar .navbar-toggler {
        flex-shrink: 0;
        margin-left: auto;
        order: 1;
        padding: 4px 8px;
    }

    .navbar .navbar-collapse {
        order: 2;
        width: 100%;
    }
    
    /* Reduce navbar padding on mobile */
    .navbar {
        padding: 0.6rem 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .navbar .navbar-brand h1 {
        font-size: 1rem !important;
        font-weight: 400;
    }
}

@media (max-width: 400px) {
    .navbar .navbar-brand h1 {
        font-size: 0.9rem !important;
        font-weight: 400;
    }
}

@media (max-width: 360px) {
    .navbar .navbar-brand h1 {
        font-size: 0.82rem !important;
        font-weight: 400;
    }
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 61, 70, .65);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(133, 169, 141, 0.8);
    border-radius: 50%;
    padding: 0.8rem;
}

/* Carousel Image Height Fix - Desktop */
#header-carousel .carousel-item {
    height: calc(100vh - 120px);
    overflow: hidden;
}

#header-carousel .carousel-item img {
    width: 100%;
    height: calc(100vh - 120px);
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        height: calc(100vh - 80px);
    }
    
    #header-carousel .carousel-item img {
        height: calc(100vh - 80px);
    }
}

@media (max-width: 575px) {
    #header-carousel .carousel-item {
        height: calc(100vh - 80px);
    }
    
    #header-carousel .carousel-item img {
        height: calc(100vh - 80px);
    }
    
    .carousel-caption {
        padding: 0 15px;
    }
    
    .carousel-caption .btn {
        padding: 10px 20px !important;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(47, 61, 70, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

.breadcrumb-item a {
    color: var(--light);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.booking {
    position: relative;
    /* margin-top: -100px !important; */ /* Removed for proper spacing */
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    min-height: 300px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: all .5s ease;
}

.service-item i {
    color: var(--primary);
}

@media (max-width: 767.98px) {
    .service-item {
        min-height: auto;
        padding: 30px 20px;
    }
}

/* Floating Animation for Specific Services */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Featured Service Items - Comfortable AC Rooms, 24/7 Room Service, Doctor On Call */
.service-item.service-featured {
    background: #85A98D !important;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(133, 169, 141, 0.3);
}

.service-item.service-featured i,
.service-item.service-featured h5,
.service-item.service-featured p {
    color: #FFFFFF !important;
}

.service-item.service-featured:hover {
    background: #6a8c71 !important;
    box-shadow: 0 20px 60px rgba(133, 169, 141, 0.5);
    animation: float 3s ease-in-out infinite;
}

/* Hover Effect for other service items - Primary Color Background */
.service-item:hover {
    background: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(133, 169, 141, 0.4);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: all .5s ease;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: all .5s ease;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(47, 61, 70, .7), rgba(47, 61, 70, .7)), url(../img/crapusel-2.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
}


/*** Footer ***/
.footer {
    position: relative;
    margin-top: 0;
    padding-top: 60px;
}

@media (max-width: 991.98px) {
    .footer {
        padding-top: 60px;
    }
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.footer .btn.btn-social:hover {
    color: #ffffff;
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: color 0.3s ease;
    position: static !important;
    overflow: visible !important;
    transform: none !important;
    box-shadow: none !important;
}

.footer .btn.btn-link:before,
.footer .btn.btn-link:after {
    display: none !important;
    content: none !important;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    box-shadow: none !important;
    color: var(--primary);
    transform: none !important;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
    transition: none;
}

.footer .copyright a:hover {
    color: var(--primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
    transition: none;
}

.footer .footer-menu a:hover {
    color: var(--primary);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* About section stats boxes */
.border.rounded.text-center {
    border-color: var(--light) !important;
}

.border.rounded.text-center i {
    color: var(--primary) !important;
}
@media (max-width: 991.98px) {
    .about-img-1 {
        margin-top: 0;
    }
}

/* About Us Image Margin */
.about-img-1 {
    margin-top: 10%;
}
@media (max-width: 991.98px) {
    .about-img-1 {
        margin-top: 0;
    }
}

/* Room Cards Styling */
.bg-white.rounded.shadow-sm {
    background-color: #FFFFFF !important;
}

.room-img-wrap-home {
    border: 3px solid var(--primary);
    border-radius: 16px 16px 0 0;
    box-sizing: border-box;
    animation: roomBorderColorShift 2.8s linear infinite;
}

.room-img-wrap-home img {
    border-radius: 16px 16px 0 0;
}

/* Booking Page Image Animations - Ensure wow zoomIn works */
.booking-img-animated {
    animation: bookingZoomIn 0.8s ease forwards;
    opacity: 0;
}

@keyframes bookingZoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes roomBorderColorShift {
    0% {
        border-color: var(--primary);
    }
    33% {
        border-color: #ffd166;
    }
    66% {
        border-color: #ef476f;
    }
    100% {
        border-color: var(--primary);
    }
}

 .mobile-check-price {
     display: none;
 }

 @media (max-width: 767.98px) {
     body {
         padding-bottom: 70px;
     }

     .mobile-check-price {
         display: block;
         position: fixed;
         left: 0;
         right: 0;
         bottom: 0;
         z-index: 9998;
         background: #fff;
         padding: 10px 12px;
         box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.12);
     }

     .mobile-check-price a {
         display: block;
         width: 100%;
         text-align: center;
         background: #2F3D46;
         color: #fff;
         text-transform: uppercase;
         font-weight: 700;
         letter-spacing: 1px;
         padding: 12px 14px;
         border-radius: 6px;
         text-decoration: none;
     }
 }

/* Room Card Features & Price */
.room-features {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.room-features i {
    color: var(--primary);
    font-size: 0.85rem;
    margin-right: 2px;
}

.room-price {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.room-price span {
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Testimonial items */
.testimonial-item.bg-light {
    background-color: var(--light) !important;
}

.testimonial-item small {
    color: var(--primary);
}

.testimonial-item .fa-quote-right {
    color: var(--primary) !important;
}

/* Form styling */
.form-control {
    border-color: var(--light);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(133, 169, 141, 0.25);
}

.form-select {
    border-color: var(--light);
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(133, 169, 141, 0.25);
}

/* Alert styling */
.alert-info {
    background-color: var(--light);
    border-color: var(--primary);
}

.alert-success {
    background-color: var(--light);
    border-color: var(--primary);
}

/* Dropdown menu */
.dropdown-menu {
    background-color: #FFFFFF;
    border-color: var(--light);
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

/* Carousel text color */
.carousel-caption h1,
.carousel-caption h6,
.carousel-caption p {
    color: #FFFFFF;
}

.carousel-caption .text-primary {
    color: var(--primary) !important;
}

/* Premium Rent Hotel Section */
.rent-hotel-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/%E2%82%B950,000-full-day-sec-img.webp') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.rent-hotel-section h1, 
.rent-hotel-section .section-title {
    color: #ffffff !important;
}

.rent-hotel-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

/* Availability Form Styling */
.availability-form {
    background: rgba(133, 169, 141, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border: 1px border rgba(133, 169, 141, 0.2);
}

.availability-form label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

.availability-form .form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #ffffff;
}

.availability-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(133, 169, 141, 0.25);
}

.check-btn {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-btn:hover {
    background: #5d7e63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(133, 169, 141, 0.4);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.rent-hotel-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
    background: rgba(255, 255, 255, 0.95);
}

.rent-hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), #a3c5ab, var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.premium-badge {
    position: absolute;
    top: 30px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.event-icon-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.event-icon-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #5d7e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.event-icon-box:hover {
    background: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(133, 169, 141, 0.3);
}

.event-icon-box:hover i {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.event-icon-box:hover span {
    color: #ffffff !important;
}

.price-highlight-box {
    background: linear-gradient(135deg, rgba(133, 169, 141, 0.2) 0%, rgba(133, 169, 141, 0.05) 100%);
    padding: 30px 20px;
    border-radius: 25px;
    margin-bottom: 35px;
    border: 1px solid rgba(133, 169, 141, 0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.price-tag {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 5px;
    letter-spacing: -2px;
    line-height: 1;
}

.price-tag span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    vertical-align: middle;
}

.rent-tagline {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    display: block;
}

@media (max-width: 768px) {
    .price-highlight-box {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    .price-tag {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .price-tag span {
        font-size: 1.2rem;
    }
    .rent-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .rent-hotel-section {
        padding: 40px 0;
    }
    .rent-hotel-card {
        padding: 25px 15px !important;
        border-radius: 25px;
    }
    .availability-form {
        padding: 15px;
        margin-top: 20px;
        border-radius: 15px;
    }
    .availability-form label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    .availability-form .form-control {
        padding: 10px;
        font-size: 0.9rem;
    }
    .check-btn {
        padding: 10px;
        font-size: 0.9rem;
        margin-top: 10px;
    }
    .event-icon-box {
        padding: 20px 10px;
        border-radius: 15px;
        min-height: 120px;
    }
    .event-icon-box i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .event-icon-box span {
        font-size: 0.75rem;
        line-height: 1.2;
        text-align: center;
    }
    /* Reduce spacing between event icon rows on mobile */
    .rent-hotel-card .row.g-2 {
        row-gap: 0.5rem !important;
    }
    .rent-hotel-card .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    .lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    .rent-hotel-card .fs-5 {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    .premium-badge {
        top: 20px;
        right: -40px;
        padding: 5px 40px;
        font-size: 0.7rem;
    }
}

.page-header h1,
.page-header .breadcrumb-item {
    color: #FFFFFF;
}

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 25px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile & Tablet - WhatsApp always visible */
@media (max-width: 991.98px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 15px;
        font-size: 26px;
        z-index: 99999 !important;
        display: flex !important;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 88px;
        right: 12px;
        font-size: 24px;
        z-index: 99999 !important;
    }
}

/* Phone Call Floating Button */
.phone-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 25px;
    left: 20px;
    background-color: #2F3D46;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-phone 2s infinite;
    text-decoration: none;
    visibility: visible !important;
    opacity: 1 !important;
}

.phone-float:hover {
    background-color: #1f2a30;
    color: #FFF;
    transform: scale(1.1);
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(47, 61, 70, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(47, 61, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(47, 61, 70, 0);
    }
}

/* Mobile & Tablet - Phone always visible */
@media (max-width: 991.98px) {
    .phone-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        left: 15px;
        font-size: 26px;
        z-index: 99999 !important;
        display: flex !important;
    }
}

@media (max-width: 575.98px) {
    .phone-float {
        width: 50px;
        height: 50px;
        bottom: 88px;
        left: 12px;
        font-size: 24px;
        z-index: 99999 !important;
    }
}


/*** Contact Card ***/
.contact-card {
    background: var(--dark);
    border-radius: 15px;
    padding: 55px 45px;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
    max-width: 620px;
    margin: 0 auto;
}

.contact-card h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.contact-card .rating-text {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

 .contact-card .contact-card-desc {
     color: #CAD2C5;
 }

.contact-card .contact-info {
    margin-bottom: 40px;
}

.contact-card .contact-info p {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.contact-card .contact-info i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-card .map-btn {
    background: #FFFFFF;
    color: var(--dark);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
}

.contact-card .map-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(133, 169, 141, 0.4);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 40px 25px;
    }

    .contact-card h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .contact-card .contact-info p {
        font-size: 0.95rem;
    }

    .contact-card .map-btn {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}


/*** Global Mobile Responsiveness ***/

/* Viewport meta - ensure no horizontal scroll */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container-xxl.bg-white.p-0 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: .3s;
}

a:hover {
    color: var(--primary);
}

/* Carousel text on mobile */
@media (max-width: 575.98px) {
    .carousel-caption h1.display-3 {
        font-size: 1.8rem !important;
    }

    .carousel-caption h6 {
        font-size: 0.85rem;
    }

    .carousel-caption .btn {
        padding: 8px 18px !important;
        font-size: 0.8rem;
    }
}

/* Carousel height on mobile */
@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        height: 50vh !important;
    }
    #header-carousel .carousel-item img {
        height: 50vh !important;
    }
}

@media (max-width: 575.98px) {
    #header-carousel .carousel-item {
        height: 50vh !important;
    }
    #header-carousel .carousel-item img {
        height: 50vh !important;
    }
}

/* Room card sliders - responsive height */
@media (max-width: 767.98px) {
    .position-relative[style*="height: 250px"] {
        height: 200px !important;
    }
}

/* Room cards on mobile */
@media (max-width: 575.98px) {
    .room-item .p-4 {
        padding: 16px !important;
    }

    .room-item h5 {
        font-size: 1rem;
    }
}

/* Booking form - full width on mobile */
@media (max-width: 767.98px) {
    .col-md-6,
    .col-md-3 {
        width: 100% !important;
    }
}

/* About section images on mobile */
@media (max-width: 991.98px) {
    .col-lg-6 .row.g-3 {
        margin-top: 30px;
    }
}

/* About section images - prevent overflow */
.about-img-1,
.col-6 img.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Section headings on mobile */
@media (max-width: 575.98px) {
    h1.display-3 {
        font-size: 2rem !important;
    }

    .section-title::before,
    .section-title::after {
        width: 25px;
        left: -35px;
        right: -35px;
    }

    /* Heading font sizes */
    h1 { font-size: 1.6rem !important; }
    h2 { font-size: 1.4rem !important; }
}

/* Testimonial on mobile */
@media (max-width: 575.98px) {
    .testimonial-carousel {
        padding-left: 30px;
        padding-right: 30px;
    }

    .testimonial-item {
        padding: 20px !important;
    }
}

/* Footer on mobile */
@media (max-width: 767.98px) {
    .footer .col-md-6.col-lg-4,
    .footer .col-md-6.col-lg-3,
    .footer .col-lg-5 {
        margin-bottom: 20px;
    }

    .footer .copyright .row {
        text-align: center;
    }

    .footer .footer-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .footer .footer-menu a {
        margin-right: 8px;
        padding-right: 8px;
    }
}

/* Booking form on mobile */
@media (max-width: 767.98px) {
    .booking .bg-white {
        padding: 20px !important;
    }
}

/* Page header on mobile */
@media (max-width: 575.98px) {
    .page-header-inner {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .page-header h1.display-3 {
        font-size: 2rem !important;
    }
}

/* Sticky header z-index fix on mobile */
@media (max-width: 991.98px) {
    .sticky-top {
        z-index: 1030;
    }
}

/* Navbar collapse on mobile - full width */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark);
        padding: 10px 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-nav .dropdown-menu {
        background: var(--dark);
        border: none;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: #fff;
    }

    .navbar-nav .dropdown-menu .dropdown-item.active,
    .navbar-nav .dropdown-menu .dropdown-item:active {
        background-color: transparent;
        color: #fff;
    }
}

/* Floating buttons - prevent overlap with content on mobile */
@media (max-width: 991.98px) {
    .back-to-top {
        right: 15px;
        bottom: 85px;
        width: 44px !important;
        height: 44px !important;
        line-height: 44px !important;
    }
    
    .back-to-top i {
        font-size: 18px;
        line-height: 44px;
    }
}

@media (max-width: 575.98px) {
    .back-to-top {
        right: 12px;
        bottom: 150px;
        width: 42px !important;
        height: 42px !important;
        line-height: 42px !important;
    }
}

/* Images always responsive - except carousel and room slider images with fixed heights */
img:not(#header-carousel img):not(.non-ac-slider-img-home):not(.ac-slider-img-home):not(.family-slider-img-home) {
    max-width: 100%;
    height: auto;
}

/* Service items on mobile */
@media (max-width: 575.98px) {
    .service-item {
        min-height: auto !important;
        padding: 25px 15px !important;
    }
}

/* Contact card on mobile */
@media (max-width: 575.98px) {
    .contact-card {
        padding: 30px 15px !important;
    }

    .contact-card h2 {
        font-size: 1.3rem !important;
    }

    .contact-card .contact-info p {
        font-size: 0.9rem !important;
    }

    .contact-card .map-btn {
        padding: 12px 25px !important;
        font-size: 0.85rem !important;
    }
}

/* About section stats boxes on mobile */
@media (max-width: 575.98px) {
    .border.rounded.text-center.p-4 {
        padding: 15px !important;
    }

    .border.rounded.text-center.p-4 h5 {
        font-size: 1.2rem;
    }
}

/* Explore More / Book Now buttons on mobile */
@media (max-width: 575.98px) {
    .btn.py-3.px-5 {
        padding: 10px 25px !important;
        font-size: 0.9rem;
    }
}

/* Room card text on mobile */
@media (max-width: 575.98px) {
    .bg-white.rounded.shadow-sm .p-3 h5 {
        font-size: 1rem;
    }

    .bg-white.rounded.shadow-sm .p-3 h4 {
        font-size: 1.1rem;
    }
}

/* Testimonial page carousel on mobile */
@media (max-width: 575.98px) {
    .owl-carousel .testimonial-item.bg-light.rounded.p-4 {
        padding: 20px 15px !important;
    }
}

/* Header top bar - hide on very small screens *//* --- Luxury Booking Modal --- */
.luxury-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.luxury-modal.show {
    opacity: 1;
}

.luxury-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: linear-gradient(to bottom, rgba(47, 61, 70, 0.9), rgba(47, 61, 70, 0.98)), url('../img/Deluxe Room-1.webp') center/cover no-repeat;
    border: 1px solid rgba(133, 169, 141, 0.2);
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(133, 169, 141, 0.15);
    padding: 40px;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    overflow: hidden;
}

.luxury-modal.show .luxury-modal-content {
    transform: scale(1) translateY(0);
}

.luxury-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.luxury-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.luxury-modal-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.luxury-modal-title {
    color: #fff;
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.luxury-modal-text {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.luxury-modal-highlight {
    background: rgba(133, 169, 141, 0.1);
    border: 1px solid rgba(133, 169, 141, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    color: #85a98d;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 30px;
    animation: float-modal 3s ease-in-out infinite;
}

@keyframes float-modal {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.luxury-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.luxury-btn-primary, .luxury-btn-secondary {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.luxury-btn-primary {
    background: linear-gradient(135deg, #85A98D, #6a8c71);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(133, 169, 141, 0.4);
    border: none;
}

.luxury-btn-primary:hover {
    background: linear-gradient(135deg, #6a8c71, #5c7c63);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 169, 141, 0.6);
}

.luxury-btn-secondary {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.luxury-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.luxury-modal-trust {
    font-size: 0.85rem;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

@media (max-width: 575.98px) {
    .luxury-modal-title {
        font-size: 1.6rem;
    }
    .luxury-modal-content {
        padding: 30px 20px;
    }
    .luxury-btn-primary, .luxury-btn-secondary {
        width: 100%;
    }
}

/* Hide Home Page Header Slider Controls (Left/Right Icons) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}


/* About Section Images Floating Animation - Home Page Only */
#about-section .col-6:nth-child(1) img {
    visibility: visible !important;
    animation: float-up-down 3s ease-in-out infinite !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
}

#about-section .col-6:nth-child(2) img {
    visibility: visible !important;
    animation: float-up-down 2.5s ease-in-out infinite 0.3s !important;
    border-radius: 20px 5px 20px 5px;
    box-shadow: 0 15px 35px rgba(254, 161, 22, 0.3);
    border: 3px solid rgba(254, 161, 22, 0.5);
    transition: all 0.3s ease;
}

#about-section .col-6:nth-child(3) img {
    visibility: visible !important;
    animation: float-left-right 3.5s ease-in-out infinite !important;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border: 4px solid var(--light);
    transition: all 0.3s ease;
}

#about-section .col-6:nth-child(4) img {
    visibility: visible !important;
    animation: float-up-down 3.2s ease-in-out infinite 0.5s !important;
    border-radius: 5px 20px 5px 20px;
    box-shadow: 0 10px 30px rgba(254, 161, 22, 0.4);
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
}

/* Hover Effects */
#about-section .col-6:nth-child(1) img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

#about-section .col-6:nth-child(2) img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 45px rgba(254, 161, 22, 0.5);
}

#about-section .col-6:nth-child(3) img:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

#about-section .col-6:nth-child(4) img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(254, 161, 22, 0.5);
}

/* Floating Animations - Faster */
@keyframes float-up-down {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-left-right {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateX(15px) rotate(5deg);
    }
}

/* Modify animation on mobile for performance (keeping floating active) */
@media (max-width: 767.98px) {
    #about-section .col-6 img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
}

/* Custom color for Book Now buttons in Room Sections across the website */
.bg-white.rounded.shadow-sm.overflow-hidden.h-100 .btn-primary {
    background-color: #2F3D46 !important;
    border-color: #2F3D46 !important;
    color: #FFFFFF !important;
}

.bg-white.rounded.shadow-sm.overflow-hidden.h-100 .btn-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFFFFF !important;
}
