@import url('https://fonts.googleapis.com/css?family=DM+Serif+Display:400,400italic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Gilda+Display:ital,wght@0,400;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



body
{
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* regular weight */
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {

  font-family: 'Gilda Display', serif;
  letter-spacing: 1.5px;
}

/* ========== Color Variables ========== */
:root {
    --primary: #006347;
    --dark-green: #00422E;
    --secondary: #ffc72c;
    --primary-light: #000080db;
    --secondary-light: rgba(224, 43, 32, 0.9);
    --dark: #272333;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --red-bg: rgb(224 43 32 / 5%);
    --title-color: #000078;
    --btn-bg: linear-gradient(to right, #FE5F03, var(--secondary));
    --border: #e0e0e0;

}


a
{
    text-decoration: none;
    color: var(--primary);
}
p
{
    margin-bottom: 0;
}
.container
{
    max-width: 1450px;
}





#lightboxOverlay {
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100% !important;
}

#lightbox {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}


.pre-init {
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}
.slick-slider {
    transition: opacity 0.5s ease !important;
}
.slider-container, 
.home-gallery-slider,
.room-listing-slider {
    min-height: 300px; /* Adjust based on your content */
}


/* Site Loader Styles */
/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: pulse 2s infinite ease-in-out;
}

.logo-icon {
    color: var(--primary);
    font-size: 50px;
    font-weight: bold;
}

.logo-icon img
{
    height: 80px;
}

.loader-text {
    color: var(--secondary);
    margin-top: 30px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--secondary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Pulsing Animation */
@keyframes pulse {
    0% {
        transform: scale(0.95);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.95);
    }
}

.section-title
{
    font-weight: 900;
}
/*Header CSS Start*/

/* ========== Header Styles ========== */
.top-header {
    background: var(--primary);
    padding: 5px 0;
    color: var(--white);
    position: relative;
    z-index: 1000;
    font-size: 14px;
}
.header-phone-link
{
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-phone-link span
{
    font-size: 1rem;
    color: var(--white);
}
.header-call-icon
{
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s 
    cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-header.transparent-front-page {
    width: 100%;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    padding: 5px;
    z-index: 999;
}

.main-header.transparent-inner-page {
    background-color: var(--white);
    position: relative;
    width: 100%;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    padding: 10px 0;
}

.container {
    margin: 0 auto;
}

/* ========== Header Content Styles ========== */
.top-header-wrapper {
    display: flex;
    flex-direction: row;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.top-social-icon {
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.top-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Secondary Menu */
.secondary-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    font-size: 16px;
}


/* Main Header Content */
.main-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-site-title h3
{
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

@media(min-width: 991px)
{
    .mobile-site-title h3
    {
        display: none;
    }
}

/* Logo */
.site-logo
{
    background: #fff;
    padding: 5px;
    border-radius: 8px;
}
.site-logo .logo-image {
    height: 65px;
    width: auto;
    transition: all 0.3s;
}

.main-header.scrolled .site-logo .logo-image {
    height: 50px;
}

/* Navigation */
.primary-navigation {
    display: flex;
    align-items: center;
}

.mobile-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    display: block;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.primary-menu > li > a:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.primary-menu > li:hover > a:after {
    width: 100%;
}
.primary-menu .current_page_item > a:after {
    width: 100%;
}

/* Dropdown Menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transform: translateY(15px);
    z-index: 100;
}

.primary-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.sub-menu li a {
    color: var(--dark);
    padding: 10px 25px;
    display: block;
    transition: all 0.2s;
    font-size: 15px;
}

.sub-menu li a:hover {
    color: var(--secondary);
    background-color: rgba(224, 43, 32, 0.05);
    transform: translateX(5px);
}

/* Header Button */
.header-button-wrapper {
 display: flex;
 gap: 10px;
 align-items: center;
 width: 100%;
 justify-content: space-between;
}
.header-mobile-button-wrapper
{
    display: none;
}

.header-mobile-button-wrapper span
{
    color: var(--white);
    font-weight: 600;
}


.header-button {
    color: var(--white) !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    animation: shrinkShadow 1.8s ease-in-out infinite;
}

@keyframes shrinkShadow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.9); }
}

.header-mobile-button
{
    background-color: var(--white);
    color: var(--primary) !important;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    font-size: 14px;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--secondary);
    margin: 6px 0;
    transition: all 0.4s;
}

@media(min-width: 992px)
{
    .mobile-navigation
    {
        display: none;
    }
}

@media (max-width: 992px) {

    .top-header
    {
        display: none;
    }
    .primary-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 1000;
        display: none;
    }
    .mobile-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 15px 15px 15px;
        transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 1000;
        display: block;
    }
    .mobile-logo-image
    {
        height: 50px;
    }


    .primary-navigation.active {
        right: 0;
    }
    .mobile-navigation.active
    {
        right: 0;
    }
    .primary-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .primary-menu > li > a {
        color: var(--dark);
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        background: none;
        transform: none;
    }

    .sub-menu li a {
        padding-left: 30px;
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .header-button-wrapper {
        display: none;
    }
    .header-mobile-button-wrapper
    {
        display: block;
    }

}

@media (max-width: 768px) {

    .top-header-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

}

@media (max-width: 576px) {

    .site-logo .logo-image {
        height: 35px;
    }
}

/*Header CSS End*/


/*Banner CSS Start*/

.hotel-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.slider-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    overflow: hidden;
    border-radius: 12px;
}

.slides-container {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s ease;
}

.slide {
  position: relative;
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate(-50%, -50%) scale(1);
  animation: zoomInOut 20s ease-in-out infinite;
  z-index: 0;
}

.slide .slide-content {
  position: relative;
  z-index: 1; /* above background */
}

/* Zoom animation */
@keyframes zoomInOut {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
}
50% {
    transform: translate(-50%, -50%) scale(1.1);
}
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide::before {
    width: 140%;
    height: 140%;
    animation-duration: 30s;
}
}

@media (max-width: 480px) {
  .slide::before {
    width: 160%;
    height: 160%;
    animation-duration: 40s;
    animation-timing-function: linear;
}
}


.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
}

.slide h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white);
}

.slide p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.hotel-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    width: 20px;
}

.btn-container {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--secondary);
    opacity: 1;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 95%;
    width: calc(100% - 40px);
    left: 20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
}

.arrow {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--primary);
}

.arrow:hover {
    background: var(--white);
}

.slide-indicator {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 3;
}

@media (max-width: 992px) {
    .slide {
        padding: 0 40px;
    }

    .slide h2 {
        font-size: 2.2rem;
    }

    .hotel-details {
        grid-template-columns: 1fr;
    }
    .slider-arrows
    {
        top: 95%;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 0 10px;
    }
    .hotel-slider-container
    {
        padding: 0 10px;
    }

    .slide h2 {
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 30px;
    }

    .slider-arrows {
        width: calc(100% - 30px);
        left: 15px;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }

    .btn-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .detail-item
    {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slide h2 {
        font-size: 1.3rem;
    }

    .slide p {
        display: none;
    }

    .slide-content {
        padding: 15px;
    }
    .slider-arrows
    {
        top: 95%;
    }
}

/*Banner CSS End*/




/*Fitness & Sports Section CSS START*/



/*Fitness & Sports Section CSS END*/

/* ========== Footer Styles Start ========== */

.footer {
    /*background-color: var(--primary);*/
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid var(--primary);
}

.footer-container {
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 0.5fr 1fr; /* First column is twice as large */
    gap: 40px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img
{
    height: 100px;
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
}


.footer-about {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--dark);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    color: var(--secondary);
    font-size: 14px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--primary);
}

.footer-contact-details {
    flex: 1;
}

.footer-contact-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.footer-contact-details p, 
.footer-contact-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-details a:hover {
    color: var(--secondary);
}


.footer-bottom {
    margin: 0 auto;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.copyright
{
    color: var(--dark);
}
.copyright a
{
    color: var(--dark);
}


@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

/* ========== Footer Styles End ========== */



/* ===== Rooms Section Styles Start ===== */


.rooms-section
{
    padding: 20px 0;
}

.rooms-section .section-title
{
    margin-bottom: 30px;
    text-align: center;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.room-card {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.room-slider {
    height: 300px;
    position: relative;
}

.room-slider .slide {
    height: 300px;
}

.room-img-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-type
{
    position: absolute;
    padding: 5px 15px;
    border-radius: 4px;
    background: var(--white);
    right: 10px;
    top: 250px;
    font-size: 0.8rem;
}
.room-type span
{
    font-weight: 700;
    color: var(--dark);
}

.room-details {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.room-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.room-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);    
    gap: 10px;
    margin-bottom: 20px;
}

.amenity {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.amenity i {
    margin-right: 5px;
    color: var(--primary);
}

.room-detail-link
{
    margin-top: 10px;
    margin-bottom: 10px;
}
.room-detail-link a
{
    text-decoration: underline;
    color: #000;
    text-underline-offset: 6px;
}


.book-meta
{
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 0.5px solid #7f8c8d47;
}

.room-price {
    flex: 1;
}
.price-value
{
    font-size: 1.5rem;
    font-weight: 700;
}
.price-day
{
    font-size: 0.8rem; 
    color: #7f8c8d;   
}
.rooms-section .book-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--secondary);
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1;
}


.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    padding: 10px 30px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: var(--secondary);
    border: 2px solid var(--secondary);
}

.room-hidden {
    display: none;
}

/* Slick slider customization */
.room-slider .slick-prev, 
.room-slider .slick-next {
    z-index: 10;
    width: 35px;
    height: 35px;
}

.room-slider .slick-prev {
    left: 10px;
}

.room-slider .slick-next {
    right: 10px;
}

.room-slider .slick-prev:before, 
.room-slider .slick-next:before {
    font-size: 35px;
    color: white;
    opacity: 0.7;
}

.room-slider .slick-dots {
    bottom: 15px;
}

.room-slider .slick-dots li button:before {
    color: white;
    opacity: 0.7;
    font-size: 10px;
}

.room-slider .slick-dots li.slick-active button:before {
    color: #c19a6b;
    opacity: 1;
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}


/* ===== Rooms Section Styles End ===== */


/* HOME Amenities section CSS START*/

/* Amenities Section */
.amenities-slider-section {
    padding: 20px 0;
}
.amenities-slider-section .section-title
{
    margin-bottom: 30px;
    text-align: center;
}

/* Amenities Slider Container */
.amenities-slider-container {
    position: relative;
    overflow: hidden;
}

/*        .amenities-slides {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
*/
.amenity-slide {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-card {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.amenity-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.amenity-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-bg {
    transform: scale(1.1);
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgb(0 0 0 / 55%), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.page-amenity-icon {
    color: var(--dark);
    transition: transform 0.3s ease;
    position: absolute;
    top: 140px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    background: aliceblue;
}

.amenity-card:hover .page-amenity-icon {
    transform: scale(1.2);
}

.amenity-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Gilda Display', serif;
}

/* Navigation */
.amenities-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.amenity-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amenity-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}



/* Responsive Styles */

@media (max-width: 992px) {

    .amenity-card {
        height: 280px;
    }
}

@media (max-width: 768px) {

    .amenity-card {
        height: 260px;
        max-width: 400px;
        margin: 0 auto;
    }

    .page-amenity-icon {
        font-size: 3rem;
    }

    .amenity-name {
        font-size: 1.3rem;
    }

}

@media (max-width: 480px) {


    .page-amenity-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .amenity-name {
        font-size: 1.2rem;
    }
}
/* HOME Amenities section CSS END*/


/*Testimonial section style Start*/
.testimonials-section {
    position: relative;
    width: 100%;        
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000a1 0%, #000000a1 100%);
    opacity: 0.9;
}

.testimonials-section .section-header {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.testimonials-section .section-title
{
    color: var(--white);
}
.testimonials-section .section-header p
{
    color: var(--white);
    margin: 0 200px;
}


.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--dark);
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.client-details p {
    font-size: 0.9rem;
    color: var(--primary);
}

.rating {
    color: var(--secondary);
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.slide-counter {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-slider {
        max-width: 90%;
    }

}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-slide {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .slider-controls {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {

    .testimonial-carousel {
        height: 450px;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
    }

    .client-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/*Testimonial section style end*/


/*Contact Us section CSS Start*/
.cta-section
{
    padding: 20px 0;
}
.cta-container {
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.2;
}

.cta-content::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(255, 199, 44, 0.3);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-button
{
    display: block;
    padding: 12px 24px;
    background: var(--secondary);
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}


.cta-image {
    flex: 1;
    min-width: 300px;

    position: relative;
}

/*.cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 99, 71, 0.2) 0%, rgba(0, 66, 46, 0.1) 100%);
}
*/
.cta-section .rating {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    margin-bottom: 0;
}

.stars {
    color: var(--secondary);
    font-size: 1.2rem;
}

.rating-text {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column-reverse;
    }

    .cta-content {
        padding: 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

}
/*Contact Us section CSS End*/

/*Subscribe CSS Start*/

.subscribe-form {
    margin-top: 1rem;
}

.subscribe-form-input-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}

.input-group input {
    width: 100%;
    padding: 10px 30px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 8px !important;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: var(--light-bg);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,128,0.1);
}

.input-icon {
    color: var(--primary);
    font-size: 20px;
}

.subscribe-form-form-icon
{
    padding: 13px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    max-height: 50px;
}
.subscribe-form-form-field
{
    width: 100%;
}
.subscribe-form-form-field input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    max-height: 50px;
    width: 100%;
}

.subscribe-form-form-field input:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: none;
}
.subscribe-form .input-group input
{
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscribe-btn {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}


/*Subscribe CSS End*/

/*Back To Top CSS Start*/

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(224, 43, 32, 0.3);
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(224, 43, 32, 0.4);
}

.back-to-top.active {
    display: flex;
}

/*Back To Top CSS End*/


/*Page Amenities CSS Start*/

/* Amenities Section */

.amenities-section {
    padding: 20px;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.page-amenity-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.page-amenity-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.amenity-img {
    height: 200px;
    overflow: hidden;
}

.amenity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.page-amenity-card:hover .amenity-img img {
    transform: scale(1.1);
}

.amenity-content {
    padding: 20px;
}

.amenity-content h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
}

.amenity-content p {
    color: var(--dark);
    margin-bottom: 15px;
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

/* Premium Section */
.premium {
    padding: 20px 0;
    text-align: center;
}

.premium h2 {
    color: var(--dark);
    margin-bottom: 40px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.premium-feature {
    background: var(--white);
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.premium-feature i {
    width: 60px;
    height: 60px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--secondary);
}

.premium-feature h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: capitalize;
}


/*Page Amenities CSS End*/


/*Attraction Page CSS Start*/

.attractions-main
{
    padding: 20px 0;
}

.attractions-main .section-header {
    text-align: center;
    margin-bottom: 50px;
}


.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #0000001a;
}

.card-header {
    color: var(--white);
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--secondary);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.card-subtitle {
    opacity: 0.9;
    font-size: 1rem;
    color: var(--dark);
}

.card-body {
    padding: 0 20px;
}

.attraction-list {
    list-style: none;
    padding: 0;
}

.attraction-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.attraction-list li:last-child {
    border-bottom: none;
}

.attraction-item {
    display: flex;
    align-items: center;
}

.attraction-icon {
    color: var(--secondary);
    margin-right: 10px;
}

.attraction-content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.attraction-name {
    font-weight: 500;
    color: var(--dark);
}

.attraction-distance {
    color: var(--dark);
    font-size: 0.85rem;
}


@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }

}


/*Attraction Page CSS End*/




/*Contact Us Page CSS Start*/

/* Contact Page Layout */
.contact-page-layout {
    color: var(--dark);
    padding: 20px 0;
}

.contact-page-layout .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5px 0;
    align-items: start;
    gap: 10px;
}

/* Left Column Styles */
.contact-info-wrapper {
    padding-right: 30px;
}

.contact-header h1 {
    font-weight: 700;
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
}


.contact-intro {
    color: var(--dark);
    line-height: 1.7;
    margin: 10px 0 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.2rem;
    background: aliceblue;
}

.contact-info-wrapper .contact-icon
{
    background-color: aliceblue;
}
.contact-card h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-card address,
.contact-card p {
    margin: 0;
    line-height: 1.6;
    font-style: normal;
    font-size: 1.1rem;
    color: #555;
}

.contact-link {    
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    color: #555;
}

.contact-link:hover {
    color: var(--secondary);
}

/* Social Media */
.contact-social {
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-social h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-social .social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.contact-social .social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-card-image img
{
    height: 400px;
    border-radius: 30px;
}

/* Right Column - Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-intro {
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Contact Form 7 Styles */
.wpcf7-form label {
    display: block;    
    font-weight: 500;
    color: var(--dark);
}

.contact-form-wrapper .wpcf7-form input:not([type="submit"]),
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: none;
}

.wpcf7-form textarea {
    height: 150px;
    resize: vertical;
}

.wpcf7-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    width: 100%;
    letter-spacing: 1px;
}

.wpcf7-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Full Width Map */
.fullwidth-map {
    height: 400px;
    margin-top: 40px;
}

.fullwidth-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}
.wpcf7-not-valid-tip
{
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-page-layout .contact-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-info-wrapper {
        padding-right: 0;
    }
    
}

@media (max-width: 768px) {

    .contact-form-wrapper {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 1.5rem;
    }
    .contact-form-wrapper h2
    {
        font-size: 1.5rem;
    }
    
    .contact-card {
        gap: 10px;
    }
    
    .fullwidth-map {
        height: 300px;
        margin-top: 40px;
    }
}

/*Contact Us Page CSS End*/

/* our-Services Section START*/

.our-services {
    padding: 20px 0;
}

.our-services .section-title
{
    margin-bottom: 30px;
    text-align: center;
}

/* Timeline-style alternating layout */
.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 -50px;
    position: relative;
    z-index: 1;
}

.service-item:nth-child(odd) .service-content {
    margin-left: -50px;
    margin-right: 0;
}

.service-item:nth-child(even) .service-content {
    margin-right: -50px;
    margin-left: 0;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark);
}

.service-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-item, .service-item:nth-child(even) {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .service-content {
        margin: -50px 20px 0 !important;
        padding: 30px;
    }

    .service-image {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {

    .service-content {
        margin: -30px 10px 0 !important;
        padding: 20px;
    }
}

/* our-Services Section END*/


/*Rooms Page CSS Start*/


.hotel-rooms-section
{
    padding: 20px 0;
}


.room-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-listing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.room-header {
    padding: 20px 20px 0;
}

.room-title
{
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.room-header .room-number
{
    position: absolute;
    top: 250px;
    left: 10px;
}

.room-content .room-number, .room-header .room-number
{
    padding: 5px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    width: max-content;
    background: var(--white);    
    font-size: 0.9rem;
    color: var(--dark);
}
.room-content .room-number
{
    font-size: 14px;
    padding: 7px;
    position: absolute;
    top: -45px;
    right: 10px;
}
.room-header .room-number i, .room-content .room-number i 
{
    color: var(--primary);
}


.listing-room-price-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 0.5px solid #7f8c8d47;
    margin-top: auto;
}
.listing-room-price-meta .book-btn{
    flex: 1;
}
.listing-room-price {
    font-size: 1.5rem;
    font-weight: 700;
    flex: 1;
}
.listing-room-price span
{
    font-size: 0.8rem;
    color: #7f8c8d;
}

.room-listing-slider {
    width: 100%;
}

.room-listing-slider img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-listing-content {
    padding: 0 20px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}


.amenities-title {
    color: var(--title-color);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.listing-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 15px;
    margin-bottom: 15px;
}

.amenity-item {
    color: #7f8c8d;
    padding: 8px 0;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.amenity-item i
{
    color: var(--primary);
}   

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    font-size: 0.8rem;
    margin-top: auto;
    justify-content: center;
    border-radius: 4px;
    background-color: var(--secondary);
}

.book-btn:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Slick slider overrides - no text elements here */
.slick-dots {
    bottom: 10px;
}

.slick-dots li button:before {
    color: var(--white);
    opacity: 0.7;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary);
    opacity: 1;
}

.slick-prev:before, .slick-next:before {
    color: var(--white);
}

.slick-prev {
    left: 10px;
    z-index: 1;
}

.slick-next {
    right: 10px;
}

@media (max-width: 768px) {
    .room-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* Filter Controls Styling */
.filter-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark);
}

.price-filter,
.smoking-filter {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
}

.price-filter:focus {
    outline: none;
}

/* Room card transition for filtering */
.room-listing-card {
    transition: all 0.3s ease;
}

.room-listing-card.hidden {
    display: none;
}

/*Rooms Page CSS End*/

/*Rooms Detail Page CSS Start*/

.room-detail-section
{
    padding: 20px 0;
}


.room-detail-container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.room-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-detail-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.room-detail-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.room-detail-price-tag {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
}

.room-detail-price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Full Width Slider */
.room-detail-slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 15px;
}

.room-detail-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.room-detail-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.room-detail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
}

.room-detail-slide-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.room-detail-slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.room-detail-slider-btn {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-detail-slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.room-detail-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.room-detail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-detail-dot.active {
    background: var(--primary);
}

/* Content Layout */
.room-detail-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.room-detail-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Room Info */
.room-detail-info-section {
    margin-bottom: 0;
}

.room-detail-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.room-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 0;
}

.room-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.room-detail-meta-icon {
    width: 36px;
    height: 36px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.room-detail-meta-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-detail-meta-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.room-detail-meta-value {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

/* Description */
.room-detail-description {
    margin-bottom: 0;
    line-height: 1.6;
}

.room-detail-description p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Amenities */
.room-detail-amenities-section {
    margin-bottom: 0;
}

.room-detail-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.room-detail-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.room-detail-amenity-item:last-child {
    border-bottom: none;
}

.room-detail-amenity-icon {
    color: var(--primary);
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

/* Booking */
.room-detail-booking-section {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 0;
    text-align: center;
}

.room-detail-booking-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.room-detail-booking-text {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.room-detail-booking-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Reviews */
.room-detail-reviews-section {
    margin-bottom: 0;
}

.room-detail-review-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: center;
}

.room-detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-detail-rating-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}

.room-detail-rating-max {
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-detail-stars {
    color: var(--secondary);
    font-size: 0.9rem;
}

.room-detail-review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-detail-recommendation {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 6px;
    font-size: 0.9rem;
}

.room-detail-recommend-text {
    font-weight: 500;
    color: var(--primary);
}

/* Contact */
.room-detail-contact-section {
    margin-bottom: 0;
}

.room-detail-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.room-detail-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
}

.room-detail-contact-icon {
    width: 36px;
    height: 36px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.room-detail-contact-text a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.room-detail-contact-text a:hover {
    color: var(--primary);
}

/* Policies */
.room-detail-policies-section {
    margin-bottom: 0;
}

.room-detail-policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.room-detail-policy-category {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
}

.room-detail-policy-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-detail-policy-list {
    list-style: none;
    padding: 0;
}

.room-detail-policy-item {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.room-detail-policy-item:last-child {
    border-bottom: none;
}

.room-detail-policy-icon {
    color: var(--primary);
    width: 14px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .room-detail-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
}

@media (max-width: 768px) {
    .room-detail-title {
        font-size: 1.7rem;
    }
    
    .room-detail-slider-container {
        height: 350px;
    }
    
    .room-detail-meta, .room-detail-amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-detail-review-summary {
        flex-direction: column;
        gap: 15px;
    }
    
    .room-detail-content-grid {
        gap: 20px;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .room-detail-container {
        padding: 0;
    }
    
    .room-detail-section {
        padding: 20px 0;
    }
    
    .room-detail-slider-container {
        height: 250px;
    }
    
    .room-detail-booking-section {
        padding: 20px;
    }
    
    .room-detail-slider-btn {
        width: 38px;
        height: 38px;
    }
    
    .room-detail-title {
        font-size: 1.5rem;
    }
    .room-detail-price-tag
    {
        font-size: 1.1rem;
    }
}

/*Rooms Detail Page CSS End*/

/*Accessibility Page CSS Start*/
.accessibility-showcase {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.accessibility-badge {
    display: inline-block;
    background: var(--btn-bg);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.facilities-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.facility-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.card-content {
    padding: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.card-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-description {
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--primary);
}

.feature i {
    color: var(--secondary);
    font-size: 12px;
}

: 600;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.facility-card {
    animation: fadeInUp 0.6s ease;
}

.facility-card:nth-child(2) {
    animation-delay: 0.1s;
}

.facility-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 768px) {

    .facilities-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .accessibility-highlights {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {

    .accessibility-badge {
        padding: 10px 25px;
        font-size: 12px;
    }

    .card-content {
        padding: 15px;
    }

}

/*Accessibility Page CSS End*/


/*Blog Page CSS Start*/

/* Blog Header */
.blog-header {
    padding: 20px 0;
    text-align: center;
}



/* Blog Section */
.blog-section {
    padding: 10px 0 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.03);
}

.blog-content {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.blog-card .blog-category {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    width: max-content;
    position: absolute;
    right: 10px;
    top: 10px;
}

.blog-title {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-weight: 600;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    color: #333;
    margin-bottom: 20px;
    font-size: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark);
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.read-more {
    display: inline-block;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 10px;
}

.read-more:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-numbers {
    display: flex;
    list-style: none;
    gap: 10px;
}

.page-numbers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-numbers a:hover, 
.page-numbers .current {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 128, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-header {
        padding: 10px 0;
    }


    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }

    .blog-content {
        padding: 20px;
    }
}

/*Blog Page CSS End*/


/*Gallery Page CSS START*/

.gallery-section {
    padding: 20px 0;
}

/* Tabs */
.gallery-tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px;
    background: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: var(--dark);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tab-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

.tab-btn.active {
    background: var(--secondary);
    color: var(--dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.page-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-hidden {
    display: none;
}

.gallery-item:hover .page-gallery-image {
    transform: scale(1.05);
}

.gallery-grid .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary), transparent);
    padding: 15px 15px 7px 15px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(100%);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.label-image-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.expand-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dark);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.gallery-item:hover .expand-btn {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    margin: 60px auto;
    max-width: 900px;
    width: 90%;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.modal-image {
    width: 100%;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.modal-caption {
    background: var(--white);
    padding: 10px;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
}

.modal-caption h3 {
    color: var(--primary);
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: -40px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--secondary);
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.nav-btn {
    background: var(--dark);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-btn:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .section-title {
        font-size: 1.2rem;
    }

    .close-btn {
        top: -30px;
        right: 10px;
        font-size: 2rem;
    }

    .modal-nav {
        padding: 0 10px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-tabs {
        display: block;
    }

    .tab-btn {
        margin-bottom: 10px;
    }
}

/*Gallery Page CSS END*/

/*Blogs Detail Page CSS Start*/


/* Blog Header */
.blog-detail-header {
    padding: 20px 0 5px 0;
    text-align: center;
}

.blog-detail-content-main .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0;
    padding-bottom: 10px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-date i
{
    color: var(--primary);
}

.blog-detail-header .blog-category {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Blog Content */
.blog-detail-content {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 10px;    
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.blog-detail-content h2 {
    color: var(--title-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
}

.blog-detail-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--secondary);
    border-radius: 5px;
}

.blog-detail-content h3 {
    color: var(--title-color);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary);
    background-color: var(--red-bg);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    position: relative;
}

.blog-detail-content blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    left: 10px;
    top: 10px;
    line-height: 1;
}

.blog-detail-content ul, 
.blog-detail-content ol {
    margin: 20px 0 20px 30px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}



/* Responsive */
@media (max-width: 992px) {
    .blog-detail-content {
        padding: 40px;
    }

    .featured-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .blog-detail-header {
        padding: 20px 0 0 0;
    }


    .blog-meta {
        gap: 15px;
    }

    .blog-detail-content {
        padding: 10px;
    }

    .featured-image {
        height: 300px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .blog-tags-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {


    .blog-detail-content {
        padding: 10px;
    }

    .featured-image {
        height: 250px;
    }

    .blog-detail-content h2 {
        font-size: 1.5rem;
    }            

}

/*Blogs Detail Page CSS End*/


/*VIDEO SECTION CSS START*/

.video-section {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 2rem 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background-color: var(--secondary);
    transform: translate(-50%, -50%) scale(1.05);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--white);
    margin-left: 5px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-section:hover .video-controls {
    opacity: 1;
}

.about-content-new .about-text
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 10px;
}

.about-content-new .about-button
{
    margin-top: 10px;
}

.control-btn {
    background-color: var(--primary-light);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.control-btn:hover {
    background-color: var(--primary);
}

.home-video-section
{
    position: relative; 
    background: linear-gradient(
        to top,          
        var(--red-bg) 50%,  
        transparent 50%  
    );
}

#video-progressBar {
  width: 100%;
  margin: 10px 0;
  cursor: pointer;
}

#unmutePrompt {
  pointer-events: auto;
}


@media (max-width: 768px) {

    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {

    .play-button {
        width: 50px;
        height: 50px;
    }
}

/*VIDEO SECTION CSS END*/

/*All Responsive CSS*/

@media(max-width: 1024px)
{
    .testimonials-section .section-header p
    {
        margin: 0;
    }
}
@media(max-width: 767px)
{

    .service-content h3
    {
        font-size: 1.2rem;
    }
    .contact-card-image img
    {
        display: none;
    }
    .room-detail-slider
    {
        height: 200px;
    }
    .room-meta-content
    {
        flex-direction: column;
    }
    .room-meta-content .meta-content-item
    {
        margin-bottom: 15px;
    }
    .page-amenity-card h3
    {
        font-size: 17px;
    }
    .page-amenity-icon 
    {
        width: 45px;
        height: 45px;
        font-size: 17px;
    }
    .room-amenity-icon i
    {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }
    .room-amenities-section .room-section-title, .event-title
    {
        font-size: 1.5rem;
        text-align: center;
    }
    .event-subtitle
    {
        font-size: 1.1rem;
    }
    .event-date-details
    {
        padding: 10px 12px;
        gap: 5px;
    }
    .event-date .day
    {
        font-size: 1rem;
    }
    .event-time i
    {
        font-size: 18px;
    }
    .page-amenities-grid
    {
        padding: 0;
        gap: 0px;
    }
    .page-amenity-card
    {
        padding: 4px;
    }
    .section-badge
    {
        margin-bottom: 10px;
        padding: 6px 13px;
        font-size: 12px;
    }
    .highlight-item
    {
        padding: 8px;
    }
    .highlight-icon-wrapper
    {
        width: 40px;
        height: 40px;
    }
    .highlight-icon
    {
        font-size: 1.2rem;
    }

    .card-icon-wrapper i {
        font-size: 1.2rem;
    }
/*    .card-icon-wrapper {
        width: 40px;
        height: 40px;
        margin: 0px auto 12px;
    }
*/
    .attractions-main .section-header
    {
        margin-bottom: 10px;
    }
    .attraction-icon
    {
        height: 40px;
        width: 40px;
        font-size: 1.2rem;
    }
    .attraction-name
    {
        font-size: 14px;
    }
    .room-header
    {
        padding: 15px 15px 0;
    }
    .room-listing-content 
    {
        padding: 0 15px 15px;
    }
    .room-info h2, .reviews-summary h3
    {
        margin-bottom: 10px !important;
    }
    .room-detail-section .row
    {
        gap: 10px;
    }
    .room-info, .booking-card
    {
        padding: 12px !important;
    }
    .filter-controls
    {
        margin-bottom: 10px;
    }
    .price-filter, .smoking-filter
    {
        padding: 6px 12px;
    }
    .room-title
    {
        margin-bottom: 5px;
        font-size: 1.2rem;
    }
    .amenity-item
    {
        padding: 4px 0;
        font-size: 0.9rem;
    }
    .amenity-title
    {
        margin-bottom: 8px;
        font-size: 1.2rem;
    }
    .testimonial-text
    {
        margin-bottom: 1.1rem;
        padding-left: 1.1rem;
    }
    .video-header
    {
        gap: 20px;
    }
    .gallery-content .description
    {
        margin-bottom: 10px;
    }
    .hero-highlights
    {
        margin-top: 10px;
    }
    .highlight-text
    {
        font-size: 1rem;
    }
    .room-info h1
    {
        font-size: 1.2rem;
    }
    .room-meta-content .meta-content-item span
    {
        font-size: 0.9rem;
    }
    .card-header h3
    {
        font-size: 1.2rem;
    }
    .footer-main {
        grid-template-columns: none;
    }
    .book-button
    {
        padding: 10px 22px;
        font-size: 14px;
    }
    .book-btn
    {
        font-size: 13px;
        padding: 12px 22px;
    }
    .image-content h3
    {
        font-size: 1.2rem;
    }
    .footer-links a
    {
        font-size: 15px;
    }
    .contact-info li span, .contact-info li a
    {
        font-size: 15px;
    }
    .reviews-summary h3, .contact-box h3, .policy-box h3
    {
        font-size: 1.2rem;
    }
    .room-button, .check-availability-btn
    {
        font-size: 13px;
        padding: 12px 22px;
    }
    .cta-content p
    {
        font-size: 0.9rem;
    }
    .social-title
    {
        font-size: 1rem;
    }
    .contact-card address, .contact-card p
    {
        font-size: 0.9rem;
    }
    .feature
    {
        font-size: 0.9rem;
    }
    .slider-nav button
    {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .primary-menu > li > a
    {
        font-size: 16px;
    }
    .room-content .room-number, .room-header .room-number
    {
        font-size: 14px;
        padding: 8px;
    }
    .section-description
    {
        font-size: 0.9rem;
    }
    .section-intro
    {
        margin-bottom: 10px;
    }
}
@media(max-width: 991px)
{
    .copyright
    {
        text-align: center;
    }
    .legal-links .footer-menu
    {
        padding: 0;
        text-align: center;
    }
    .special-events, .testimonials-section
    {
        padding: 20px 0;
    }
    .event-card
    {
        margin-bottom: 10px;
    }
    .footer-main
    {
        margin-bottom: 20px;
        gap: 20px;
    }
    p, .amenity-desc, .property-description p, .amenity-content p, .legal-links .footer-menu li a, .facilities-right .section-subtitle, .testimonial-content, .service-content p, .card-description
    {
        font-size: 0.9rem;
    }
    .contact-info-container
    {
        flex-direction: column;
    }
    .contact-info-bar
    {
        display: none;
    }
    .banner-content
    {
        margin-bottom: 0;
    }
    .hero-banner
    {
        padding: 30px 0 0 0;
    }
    .map-link, .contact-link
    {
        justify-content: center;
    }
    .split-gallery-container
    {
        gap: 0px;
    }
    .listing-amenities-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }
    .room-detail-slider
    {
        height: 300px;
    }
    .reviews-summary, .price-box, .check-availability
    {
        text-align: left;
    }
    .contact-page-layout
    {
        padding: 20px 0;
    }
    .wp-loader-title
    {
        font-size: 1.5rem;
    }
    .room-description
    {
        font-size: 0.9rem;
    }
    .amenities-note-text
    {
        text-align: center;
    }
    .blog-detail-content h3, .blog-detail-content h2, .blog-detail-content h4
    {
        font-size: 1.2rem;
    }
    .blog-title
    {
        font-size: 1.2rem;
    }
    .about-content-new .about-text
    {
        grid-template-columns: repeat(1, 1fr);
    }
    .home-video-section
    {
        background: var(--white);
    }
    .footer-heading
    {
        font-size: 1.2rem;
    }
    .room-name
    {
        font-size: 1.2rem;
    }
    .room-details
    {
        padding: 10px;
    }
    .load-more-btn
    {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .slider-nav
    {
        display: none;
    }
    .premium-feature h3
    {
        font-size: 1.1rem;
    }
    .section-header
    {
        margin-bottom: 20px;
    }
    .card-title
    {
        font-size: 1.3rem;
    }
    .contact-card h3
    {
        font-size: 1.1rem;
    }
    .footer
    {
        padding: 20px 0;
    }
    .amenity-overlay, .amenity-bg, .amenity-card
    {
        height: 150px;
    }
}
@media(max-width: 1399px)
{
    .footer-logo
    {
        /*height: 40px;*/
    }
}
@media(max-width: 474px)
{
    .header-mobile-button
    {
        padding: 6px 10px;
        gap: 5px;
        font-size: 12px;
    }
    .main-header.scrolled .site-logo .logo-image
    {
        height: 35px;
    }
    .modal-caption h3
    {
        font-size: 1.1rem;
    }
}
@media(min-width: 992px) and (max-width: 1199px)
{
    .contact-info-bar
    {
        margin: unset;
    }
    .contact-info-container
    {
        gap: 10px;
    }
    .contact-info-bar .contact-item
    {
        gap: 5px;
    }
}

.lb-data .lb-close
{
    display: none;
}

.floating-phone-call {
  position: fixed;
  bottom: 220px;
  right: 20px;
  background-color: var(--primary); /* primary color */
  color: white;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-phone-call i {
  font-size: 22px;
}

.floating-phone-call:hover {
  background-color: #00422e; /* darker shade on hover */
  transform: scale(1.1);
}

/* Ringing animation */
.ringing {
  animation: phone-pulse 1.5s infinite ease-in-out;
  transform-origin: center center;
}

@keyframes phone-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@media(max-width: 992px)
{
    .floating-phone-call
    {
        display: none;
    }
}

