* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #faf8f5;
    overflow-x: hidden;
    font-size: 15px;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Playfair Display', serif;
}
P{
    font-size: 15px;
}
a{
    text-decoration: none;
}
.section-space{
    padding: 80px 0;
}

/* ========== COLOR THEME ========== */
.top-bar {
    background: #1a4a3a;
    color: #e8e2d8;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
}

.top-bar .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    font-size: 13px;
    color: #c4a265;
    width: 16px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: #e8e2d8;
    transition: color 0.2s ease;
    font-size: 14px;
}

.social-icon:hover {
    color: #c4a265;
}

/* ========== MAIN NAVBAR ========== */
.main-navbar {
    background: #ffffff;
    padding: 4px 0;
    border-bottom: 1px solid #e8e2da;
    transition: all 0.2s ease;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    padding: 4px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    margin-bottom: -20px;
    position: relative;
    z-index: 99;
}
.logo img {
    width: 100px;
}


/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #4a5568;
    padding: 8px 12px;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a:hover {
    color: #1a4a3a;
}

.nav-menu li a.active {
    color: #1a4a3a;
    font-weight: 600;
}


/*dropdown menu */
.dropdown-parent {
    position: relative;
}

.dropdown-parent .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid #e8e2da;
    list-style: none;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: block;
}

.dropdown-menu li a {
    padding: 8px 20px;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.dropdown-menu li a i {
    width: 18px;
    color: #8B6914;
}

.dropdown-menu li a:hover {
    background: #f7f5f2;
    color: #1a4a3a;
}

/* Mobile submenu fix */
.sidebar-has-sub {
    cursor: pointer;
}

.sidebar-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.sidebar-item-active .sidebar-submenu {
    display: block;
}

.sidebar-submenu li a {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    text-decoration: none;
}

.sidebar-submenu li a:hover {
    background: #f0eeea;
    border-radius: 6px;
}



/* Book Now Button */
.book-now-btn {
    background: #1a4a3a !important;
    color: #ffffff !important;
    padding: 8px 24px !important;
    border-radius: 30px !important;
    margin-left: 12px;
    font-weight: 500 !important;
}

.book-now-btn:hover {
    background: #0f3a2e !important;
    color: #ffffff !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a4a3a;
    cursor: pointer;
    padding: 5px;
}

/* ========== MOBILE SIDEBAR ========== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #ffffff;
    z-index: 1001;
    padding: 30px 20px;
    transition: 0.3s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.08);
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

.sidebar-close {
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 20px;
    cursor: pointer;
    color: #1a4a3a;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(26, 74, 58, 0.1);
}

.sidebar-logo {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e2da;
}

.sidebar-logo .logo {
    justify-content: center;
    font-size: 20px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin: 8px 0;
}

.sidebar-nav li a {
    display: block;
    padding: 10px 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: #f0eeea;
    color: #1a4a3a;
}

/* ========== MOBILE SUBMENU - FIXED CLICK EFFECT ========== */
.sidebar-submenu {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
    list-style: none;
}

.sidebar-submenu li a {
    padding: 8px 12px;
}

.sidebar-submenu li a i {
    margin-right: 8px;
    color: #8B6914;
}

.sidebar-item-active .sidebar-submenu {
    display: block;
}

.sidebar-book {
    background: #1a4a3a;
    color: #ffffff !important;
    text-align: center;
    margin-top: 20px;
}

.sidebar-book:hover {
    background: #0f3a2e;
    color: #ffffff !important;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 90vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
}

.hero-slider .carousel-item.active .slide-bg {
    transform: scale(1.08);
}

.hero-slider .carousel-item {
    transition: transform 1.2s ease-in-out;
}

.hero-slider .carousel-custom-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 80%;
    max-width: 750px;
}

.hero-slider .carousel-custom-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-slider .carousel-custom-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 0.95;
}

.hero-slider .carousel-custom-caption .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 10px 32px;
    font-size: 14px;
    border-radius: 30px;
    background: #c4a265;
    border: none;
    color: #ffffff;
    transition: background 0.2s ease;
    letter-spacing: 0.5px;
}

.hero-slider .carousel-custom-caption .btn:hover {
    background: #a8844a;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

 .hero-slider:hover .carousel-control-prev,
 .hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(196,162,101,0.8);
}

.hero-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
}

.hero-slider .carousel-indicators button.active {
    background-color: #c4a265;
}



/* ========== ABOUT SECTION - SHIVA STYLE ========== */
.shiva-about {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}


.shiva-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4a265;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}

.shiva-subtitle::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: #c4a265;
}

.shiva-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a4a3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.shiva-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 25px;
}

.shiva-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a4a3a;
    background: transparent;
    border: 2px solid #c4a265;
    padding: 10px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.shiva-btn:hover {
    background: #c4a265;
    color: #ffffff;
    border-color: #c4a265;
}

/* ========== ACCOMMODATION SECTION ========== */
.accommodation-section {
    padding: 80px 0;
    background: #f5f3ef;
}



.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4a265;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a4a3a;
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #c4a265;
    margin: 0 auto;
}

/* Room Cards */
.room-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.room-img {
    width: 100%;
    object-fit: cover;
}

.room-info {
    padding: 25px;
}

.room-icon {
    font-size: 35px;
    color: #c4a265;
    margin-bottom: 15px;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a4a3a;
    margin-bottom: 12px;
}

.room-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 15px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    border-top: 1px solid #e8e2da;
    padding-top: 15px;
}

.room-features li {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
    color: #4a5568;
}

.room-features li i {
    color: #c4a265;
    margin-right: 5px;
}

.room-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a4a3a;
    margin: 15px 0;
}

.room-price span {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.room-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a4a3a;
    background: transparent;
    border: 2px solid #c4a265;
    padding: 8px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 30px;
    width: 100%;
    text-align: center;
}

.room-btn:hover {
    background: #c4a265;
    color: #ffffff;
}



/* Google Rating Summary */



.google-rating {
    background: linear-gradient(135deg, #1a4a3a 0%, #2d5a45 100%);
    border-radius: 20px;
    padding: 5px 40px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.rating-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-icon {
    font-size: 48px;
    color: #ffffff;
}

.rating-score-box {
    text-align: center;
}

.rating-score {
    font-size: 30px;
    font-weight: 500;
    color: #ffc107;
    font-family: 'Playfair Display', serif;
}

.rating-stars i {
    color: #ffc107;
    font-size: 16px;
    margin: 0 1px;
}

.rating-count {
    font-size: 13px;x;
    color: #fff;
}

.write-review-btn {
    background: transparent;
    border: 2px solid #c4a265;
    color: #fff;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.write-review-btn:hover {
    background: #c4a265;
}

/* Review Cards */
.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e8e2da;
    transition: all 0.3s ease;
    height: auto;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Reviewer Header with Image */
.reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brown);
    background: #f0eeea;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 3px;
}

.review-date {
    font-size: 11px;
    color: var(--grey);
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

/* Accordion Read More Styles */
.review-text-container {
    position: relative;
}

.review-short-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.review-full-text {
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e8e2da;
}

.review-full-text.show {
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--brown);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0 0 0;
    margin-top: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--dark-green);
    gap: 10px;
}

.read-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

/* Swiper Custom Styles */
.reviews-swiper {
    padding: 10px 5px 40px 5px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 30px;
    background: #222;
    border-radius: 50%;
    color: #fff;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
    right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
    left: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #323232;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: ;
}

.swiper-pagination-bullet-active {
    background: #c4a265;
}



#bg-paralax {
     background: url(../img/bg/prlx-img.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    width: 100%;
    padding: 200px 0;
}



/* ===== SECTION REC ===== */
.shiva-rec-sec{
    overflow:hidden;
}

/* ROW */
.shiva-rec-row{
    display:flex;
    flex-wrap:wrap;
}

/* IMAGE */
.shiva-rec-img{
    width:50%;
    position:relative;
    overflow:hidden;
}

.shiva-rec-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
}

/* OVERLAY */
.shiva-rec-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity:0;
    transition:0.5s;
}

/* CONTENT */
.shiva-rec-content{
    width:50%;
    padding:80px 60px;
    background:#f5f3ef;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* TEXT */
.shiva-sub{
    letter-spacing:3px;
    font-size:12px;
    color:#888;
}

.shiva-title{
    font-family:'Playfair Display', serif;
    font-size:38px;
    margin:10px 0;
}

.shiva-text{
    color:#555;
    line-height:1.8;
}



/* HOVER */
.shiva-rec-row:hover img{
    transform:scale(1.1);
}

.shiva-rec-row:hover .shiva-rec-img::after{
    opacity:1;
}

/* REVERSE */
.shiva-reverse{
    flex-direction:row-reverse;
}

/* ===== LAZY LOAD ===== */
.shiva-lazy{
    filter:blur(8px);
    transform:scale(1.05);
    transition:all 0.8s ease;
}

.shiva-lazy.loaded{
    filter:blur(0);
    transform:scale(1);
}

/* ===== SCROLL ANIMATION ===== */
.shiva-fade{
    opacity:0;
    transform:translateY(50px);
    transition:all 0.8s ease;
}

.shiva-fade.active{
    opacity:1;
    transform:translateY(0);
}

/* ===== MOBILE ===== */
@media(max-width:767px){

    .shiva-rec-row{
        flex-direction:column !important;
    }

    .shiva-rec-img,
    .shiva-rec-content{
        width:100%;
    }

    .shiva-rec-img img{
        height:250px;
    }

    .shiva-rec-content{
        padding:40px 20px;
        text-align:center;
    }

    .shiva-title{
        font-size:26px;
    }
}

/* ===== TABLET ===== */
@media(min-width:768px) and (max-width:991px){

    .shiva-rec-content{
        padding:50px 30px;
    }

    .shiva-title{
        font-size:30px;
    }
}


.section-weather {
    background-image: url(../img/bg/bg-testimonials.jpg);
    padding: 60px;
}
.weather-wrapper {
    background: #fff;
    position: relative;
    padding: 40px 0;
}


/* SECTION */
.shiva-reach-sec{
    background:#f5f3ef;
}

/* LEFT CONTENT */
.shiva-reach-content{
    padding:40px;
}


.shiva-reach-text{
    color:#555;
    line-height:1.8;
    font-size:15px;
}

/* CONTACT */
.shiva-contact{
    margin-top:30px;
    display:flex;
    align-items:center;
    gap:15px;
}

.shiva-contact i{
    font-size:24px;
    color:#c4a265;
}

.shiva-contact span{
    display:block;
    font-size:12px;
    letter-spacing:2px;
    color:#888;
}

.shiva-contact strong{
    font-size:22px;
    color:#c4a265;
}

/* MAP */
.shiva-map{
    width:100%;
    height:100%;
    min-height:400px;
    border-radius:8px;
    overflow:hidden;
}

/* RESPONSIVE */
@media(max-width:991px){
    .shiva-reach-content{
        padding:20px;
    }

    .shiva-reach-title{
        font-size:32px;
    }
}



/* ========== FOOTER SECTION ========== */
.footer {
    background: #1a2f28;
    color: #d4cfc5;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

/* Decorative Top Border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c4a265, #8B6914, #c4a265);
}



/* Footer Columns */
.footer-column {
    margin-bottom: 30px;
}

.footer-logo img{
    width: 140px;
    margin-bottom: 20px;
}



.footer-description {
    line-height: 1.7;
    color: #b8b2a8;
    margin-bottom: 25px;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(196, 162, 101, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 16px;
    color: #c4a265;
}

.contact-item:hover .contact-icon {
    background: #c4a265;
    transform: scale(1.05);
}

.contact-item:hover .contact-icon i {
    color: #1a2f28;
}

.contact-text {
    line-height: 1.5;
    color: #b8b2a8;
}

.contact-text a {
    color: #b8b2a8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: #c4a265;
}

/* Room Details */
.room-details-amenities {
    padding: 10px 30px;
}


.room-details-amenities-content h4 {
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 13px;
}

.room-amenities-item ul {
   list-style: none;
   padding-left: 0;
}

.room-amenities-item ul li {
    color: #616161;
    font-size: 15px;
    border-bottom: 1px solid #61616129;
    padding-bottom: 10px;
    padding-top: 10px;
}

.room-amenities-item ul li:last-child{
    border: transparent;
}

.room-amenities-item ul li img {
    margin-right: 14px;
    margin-bottom: 6px;
}



/* SECTION */
.shiva-section{
    padding:80px 0;
}


/* FEATURE BOX */
.shiva-feature{
    padding:25px;
    background:#f8f6f2;
    border-radius:10px;
    text-align:center;
    transition:0.3s;
}

.shiva-feature:hover{
    transform:translateY(-5px);
}

/* CTA */
.shiva-cta{
    background:#c59d5f;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.shiva-btn{
    background:#fff;
    color:#c59d5f;
    padding:10px 25px;
    text-decoration:none;
    display:inline-block;
    margin-top:15px;
}

/* MOBILE */
@media(max-width:767px){
    .shiva-about-hero h1{
        font-size:32px;
    }
}


/* SECTION */
.shiva-day-sec{
    padding:80px 0;
    background:#f8f6f2;
    font-family:'Montserrat', sans-serif;
}

/* HEADING */
.shiva-day-title{
    font-family:'Playfair Display', serif;
    font-size:40px;
    text-align:center;
}

.shiva-day-sub{
    text-align:center;
    color:#888;
    letter-spacing:2px;
    margin-bottom:50px;
}

/* TIMELINE */
.shiva-timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

/* LINE */
.shiva-timeline::before{
    content:'';
    position:absolute;
    left:50%;
    width:2px;
    height:100%;
    background:#ddd;
    transform:translateX(-50%);
}

/* ITEM */
.shiva-timeline-item{
    width:50%;
    padding:20px 40px;
    position:relative;
}

/* LEFT */
.shiva-left{
    left:0;
    text-align:right;
}

/* RIGHT */
.shiva-right{
    left:50%;
}

/* DOT */
.shiva-dot{
    position:absolute;
    top:25px;
    width:15px;
    height:15px;
    background:#c59d5f;
    border-radius:50%;
}

/* DOT POSITION */
.shiva-left .shiva-dot{
    right:-8px;
}

.shiva-right .shiva-dot{
    left:-8px;
}

/* CONTENT */
.shiva-content{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.shiva-content h5{
    margin-bottom:8px;
}

/* ANIMATION */
.shiva-fade{
    opacity:0;
    transform:translateY(40px);
    transition:0.7s;
}

.shiva-fade.active{
    opacity:1;
    transform:translateY(0);
}

/* MOBILE */
@media(max-width:767px){

    .shiva-timeline::before{
        left:10px;
    }

    .shiva-timeline-item{
        width:100%;
        padding-left:40px;
        text-align:left;
    }

    .shiva-left,
    .shiva-right{
        left:0;
    }

    .shiva-dot{
        left:0 !important;
    }
}

/* SECTION */
.shiva-tariff-sec{
    padding:80px 0;
    background:#f8f6f2;
    font-family:'Montserrat', sans-serif;
}

/* TITLE */
.shiva-tariff-title{
    font-family:'Playfair Display', serif;
    font-size:36px;
    text-align:center;
    margin-bottom:40px;
}

/* TABLE */
.shiva-table{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* HEADER */
.shiva-table thead{
    background:#1f2937;
    color:#fff;
}

.shiva-table th{
    padding:18px;
    font-weight:500;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
}

/* BODY */
.shiva-table td{
    padding:18px;
    border-bottom:1px solid #eee;
    font-size:15px;
}

/* ROW HOVER */
.shiva-table tbody tr:hover{
    background:#f9f9f9;
}

/* PRICE */
.shiva-price{
    font-weight:500;
    color:#c59d5f;
}

/* LAST ROW */
.shiva-meal{
    text-align:center;
    background:#fafafa;
    font-weight:500;
}

/* RESPONSIVE */
@media(max-width:767px){
    .shiva-table th,
    .shiva-table td{
        padding:12px;
        font-size:13px;
    }

    .shiva-tariff-title{
        font-size:26px;
    }
}



/* SECTION GALLERY */
.shiva-gallery-sec{
    padding:80px 0;
    background:#f8f6f2;
}



/* IMAGE BOX */
.shiva-gallery-item{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    border-radius:10px;
}

.shiva-gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s;
}

/* HOVER EFFECT */
.shiva-gallery-item:hover img{
    transform:scale(1.1);
}

/* OVERLAY */
.shiva-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
    opacity:0;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
}

.shiva-overlay i{
    color:#fff;
    font-size:24px;
}

.shiva-gallery-item:hover .shiva-overlay{
    opacity:1;
}

/* LIGHTBOX */
.shiva-lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.shiva-lightbox img{
    max-width:90%;
    max-height:80%;
}

/* CLOSE */
.shiva-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* NAV BUTTONS */
.shiva-prev, .shiva-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.shiva-prev{ left:30px; }
.shiva-next{ right:30px; }



/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4a265;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a4a3a;
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #c4a265;
    margin: 0 auto;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Contact Form */
.contact-form {
    flex: 2;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e8e2da;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a4a3a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c4a265;
    display: inline-block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #1a4a3a;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: #c4a265;
    margin-right: 8px;
    width: 18px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #e0d8cc;
    border-radius: 12px;
    background: #fefdf9;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #c4a265;
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
    background: #ffffff;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #1a4a3a;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #c4a265;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 162, 101, 0.3);
}

/* Contact Info */
.contact-info {
    flex: 1.2;
    background: linear-gradient(135deg, #1a4a3a 0%, #1f5a48 100%);
    border-radius: 20px;
    padding: 35px;
    color: #ffffff;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c4a265;
    display: inline-block;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(196, 162, 101, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 20px;
    color: #c4a265;
}

.info-item:hover .info-icon {
    background: #c4a265;
    transform: scale(1.05);
}

.info-item:hover .info-icon i {
    color: #1a4a3a;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #d4cfc5;
    margin: 0;
}

.info-content a {
    color: #d4cfc5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-content a:hover {
    color: #c4a265;
}

/* Social Links */
.social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: #c4a265;
    color: #1a4a3a;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form,
    .contact-info {
        flex: auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .form-title,
    .info-title {
        font-size: 20px;
    }
    
    .map-section iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .info-item {
        gap: 12px;
    }
    
    .info-icon {
        width: 38px;
        height: 38px;
    }
    
    .info-icon i {
        font-size: 16px;
    }
}




/* Footer Headings */
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c4a265;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #b8b2a8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 12px;
    color: #c4a265;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #c4a265;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* About Text */
.about-text {
    line-height: 1.7;
    color: #b8b2a8;
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8b2a8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: #c4a265;
    color: #1a2f28;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(196, 162, 101, 0.2);
    padding: 12px 0;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #8a847a;
    margin: 0;
}

.footer-bottom a {
    color: #c4a265;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links li a {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
        width: 100%;
    }
}





/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-toggle {
        display: block !important;
    }
    
    .hero-slider .carousel-custom-caption h1 {
        font-size: 38px;
    }
    
    .hero-slider .carousel-custom-caption p {
        font-size: 14px;
    }
    
    .hero-slider .carousel-item {
        height: 60vh;
        min-height: 450px;
    }
     .shiva-title {
        font-size: 34px;
    }
    
    .section-space {
        padding: 60px 0;
    }
    .section-title {
        font-size: 34px;
    }
    
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-left {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-slider .carousel-custom-caption h1 {
        font-size: 30px;
    }
    
    .hero-slider .carousel-custom-caption p {
        font-size: 13px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 22px;
    }

    .shiva-title {
        font-size: 28px;
    }
    
    .shiva-subtitle::before {
        display: none;
    }
    
    
    .shiva-about {
        padding: 50px 0;
        text-align: center;
    }
    
    .shiva-subtitle {
        text-align: center;
        display: block;
    }
    .section-title {
        font-size: 28px;
    }
    
}

@media (max-width: 480px) {
    .hero-slider .carousel-custom-caption h1 {
        font-size: 24px;
    }
    
    .hero-slider .carousel-custom-caption p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .hero-slider .carousel-custom-caption .btn {
        padding: 8px 24px;
        font-size: 12px;
    }
    
    .top-bar-item {
        font-size: 11px;
    }
    .section-title {
        font-size: 24px;
    }
    
    .section-weather{
        padding:40px 20px;
    }
    
}


/*======sidebar social media=======*/
.mf-social-side-list {
	position: fixed;
	bottom: 80px;
	right: 20px;
	z-index: 9999;
	padding: 10px 8px;
	border-radius: 50px;
}

.mf-social-side-list ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
}

.mf-social-side-list ul li a {
	color: #323232;
	border-radius: 50%;
	line-height: 35px;
	margin: 6px 0;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.mf-social-side-list ul li a:hover {
	opacity: .9;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

.mf-social-side-list ul li a i img {
	width: 50px;
}

/* Single combined bounce + pulse animation */
.mf-social-side-list ul li .whatsapp-icon i img {
	animation: bouncePulse 2s infinite;
}

@keyframes bouncePulse {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0) scale(1);
	}
	40% {
		transform: translateY(-10px) scale(1.1);
	}
	60% {
		transform: translateY(-5px) scale(1.05);
	}
}

/*======sidebar social media=====*/