/*=====================================================
ROOM HERO
======================================================*/

.room-details-hero{

height:420px;

background-size:cover;

background-position:center;

position:relative;

}

.hero-overlay{

width:100%;

height:100%;

background:linear-gradient(
90deg,
rgba(16,42,24,.72),
rgba(16,42,24,.45)
);

display:flex;

align-items:center;

}

.hero-content{

max-width:650px;

color:#fff;

}

.hero-tag{

display:inline-flex;

align-items:center;

gap:8px;

background:rgba(255,255,255,.18);

padding:8px 18px;

border-radius:30px;

font-size:15px;

font-weight:600;

margin-bottom:20px;

backdrop-filter:blur(6px);

}

.hero-content h1{

font-size:58px;

font-weight:800;

margin-bottom:18px;

line-height:1.1;

}

.hero-description{

font-size:20px;

line-height:34px;

margin-bottom:25px;

color:#f5f5f5;

}

.hero-breadcrumb{

display:flex;

align-items:center;

gap:10px;

flex-wrap:wrap;

margin-bottom:22px;

font-size:16px;

}

.hero-breadcrumb a{

color:#fff;

text-decoration:none;

}

.hero-breadcrumb span{

color:#FFD54F;

font-weight:700;

}

.hero-availability{

display:inline-flex;

align-items:center;

gap:8px;

padding:10px 18px;

border-radius:50px;

font-size:15px;

font-weight:700;

}

.hero-availability.available{

background:#2E7D32;

color:#fff;

}

.hero-availability.few{

background:#FF9800;

color:#fff;

}

.hero-availability.sold{

background:#C62828;

color:#fff;

}

@media(max-width:768px){

.room-details-hero{

height:320px;

}

.hero-content h1{

font-size:36px;

}

.hero-description{

font-size:16px;

line-height:28px;

}

}

/*==================================================
ROOM DETAILS
==================================================*/

.room-details-section{

padding:90px 0;

background:#fafaf7;

}

.gallery-wrapper{

background:#fff;

padding:20px;

border-radius:22px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.main-gallery-image{

position:relative;

overflow:hidden;

border-radius:18px;

}

.gallery-image{

display:none;

width:100%;

height:520px;

object-fit:cover;

cursor:pointer;

transition:.4s;

}

.gallery-image.active{

display:block;

animation:fadeImage .4s;

}

.gallery-image:hover{

transform:scale(1.02);

}

.gallery-count{

position:absolute;

top:18px;

left:18px;

background:rgba(0,0,0,.65);

color:#fff;

padding:8px 14px;

border-radius:30px;

font-size:14px;

}

.zoom-badge{

position:absolute;

bottom:18px;

right:18px;

background:rgba(0,0,0,.65);

color:#fff;

padding:8px 14px;

border-radius:30px;

font-size:14px;

}

.thumbnail-row{

display:flex;

gap:12px;

margin-top:18px;

flex-wrap:wrap;

}

.thumb-img{

width:95px;

height:75px;

object-fit:cover;

border-radius:12px;

cursor:pointer;

opacity:.65;

border:3px solid transparent;

transition:.3s;

}

.thumb-img:hover{

opacity:1;

transform:translateY(-3px);

}

.thumb-img.active{

opacity:1;

border-color:#2E7D32;

}

.room-status{

position:absolute;

top:18px;

right:18px;

z-index:20;

}

.room-status span{

padding:10px 18px;

border-radius:30px;

color:#fff;

font-size:14px;

font-weight:700;

display:inline-block;

}

.room-status .available{

background:#2E7D32;

}

.room-status .few{

background:#E67E22;

}

.room-status .sold{

background:#D32F2F;

}

#imageLightbox{

display:none;

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.95);

justify-content:center;

align-items:center;

z-index:999999;

cursor:zoom-out;

}

#imageLightbox img{

max-width:90%;

max-height:90%;

border-radius:15px;

box-shadow:0 15px 50px rgba(0,0,0,.4);

}

#imageLightbox span{

position:absolute;

right:40px;

top:25px;

font-size:45px;

color:#fff;

cursor:pointer;

}

.thumb-img.active{

opacity:1;

border-color:#1b5e20;

}

.room-info-card-new{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:auto;

}

/*==========================
WHY CHOOSE CARD
===========================*/

.why-choose-card{

margin-top:22px;

background:#fff;

border-radius:18px;

padding:25px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

border:1px solid #ececec;

}

.why-choose-card h4{

font-size:24px;

font-weight:700;

margin-bottom:20px;

color:#123524;

}

.why-choose-card h4 i{

color:#d4a017;

margin-right:10px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.why-item{

display:flex;

align-items:center;

gap:12px;

padding:12px;

background:#f9faf9;

border-radius:12px;

transition:.3s;

}

.why-item:hover{

background:#eef7ef;

transform:translateY(-3px);

}

.why-item i{

width:42px;

height:42px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#123524;

color:#fff;

font-size:18px;

}

.why-item span{

font-size:15px;

font-weight:600;

color:#333;

}


/*==============================
HORIZONTAL STAY CARDS
==============================*/

.stay-option-card{

    background:#fff;

    border-radius:16px;

    padding:18px;

    border:1px solid #e9e9e9;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    transition:.3s;

}

.stay-option-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.stay-card-top{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    gap:10px;

}

.stay-title{

    font-size:20px;

    font-weight:700;

    color:#123524;

}

.stay-title i{

    color:#D4A017;

    margin-right:8px;

}

.stay-short-desc{

    font-size:14px;

    color:#666;

    line-height:22px;

    margin-bottom:5px;

}

.stay-price-box{

    margin-top:5px;

}

.stay-price-box h3{

    margin:0;

    font-size:28px;

    color:#123524;

    font-weight:800;

}

.stay-price-box span{

    font-size:13px;

    color:#777;

}

.package-book-btn,
.room-book-btn{

    display:block;

    width:100%;

    margin-top:15px;

    text-align:center;

    padding:12px;

    border-radius:8px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.package-book-btn{

    background:#2E7D32;

    color:#fff;

}

.package-book-btn:hover{

    background:#1f5b24;

    color:#fff;

}

.room-book-btn{

    background:#d4a017;

    color:#fff;

}

.room-book-btn:hover{

    background:#b7860c;

    color:#fff;

}

@media(max-width:768px){

.stay-card-top{

flex-direction:column;

align-items:flex-start;

}

.stay-price-box{

text-align:left;

}

}

/*=========================
FOOD MENU
=========================*/

.food-menu-card{

margin-top:22px;

background:#fffdf8;

border:1px solid #ecd9a2;

border-radius:16px;

padding:20px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.food-menu-card h4{

font-size:22px;

font-weight:700;

color:#123524;

margin-bottom:15px;

}

.food-menu-card h4 i{

color:#d4a017;

margin-right:8px;

}

.menu-row{

display:flex;

justify-content:space-between;

align-items:center;

padding:10px 0;

border-bottom:1px dashed #ddd;

}

.menu-row:last-child{

border-bottom:none;

}

.menu-row span{

font-weight:600;

color:#123524;

font-size:15px;

}

.menu-row small{

color:#666;

font-size:13px;

text-align:right;

}

.menu-note{

margin-top:12px;

font-size:12px;

color:#777;

font-style:italic;

}




.premium-tag{

display:inline-block;

background:#e8f5e9;

color:#2e7d32;

padding:8px 18px;

border-radius:30px;

font-weight:600;

margin-bottom:18px;

}

.room-info-card-new h2{

font-size:42px;

font-weight:700;

margin-bottom:15px;

}

.room-highlight-new{

font-size:20px;

font-weight:600;

color:#2e7d32;

margin-bottom:20px;

}

.room-description-new{

font-size:16px;

line-height:30px;

text-align:justify;

color:#555;

}

.room-features-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:12px;

margin:25px 0;

}

.feature-box{

padding:15px 10px;

border-radius:12px;

background:#fff;

text-align:center;

border:1px solid #e9e9e9;

box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.feature-box:hover{

transform:translateY(-5px);

}

.feature-box i{

font-size:22px;

color:#D4A017;

margin-bottom:8px;

}

.feature-box h5{

font-size:18px;

margin:0;

font-weight:700;

}

.feature-box span{

font-size:13px;

color:#666;

}

@keyframes fadeImage{

from{

opacity:0;

}

to{

opacity:1;

}

}

@media(max-width:991px){

.gallery-image{

height:300px;

}

.room-info-card-new{

margin-top:35px;

}

}

/*======================================================
STAY SELECTION
======================================================*/

.stay-selection-section{

padding:90px 0;

background:#ffffff;

}

.section-heading{

text-align:center;

margin-bottom:60px;

}

.section-heading span{

display:inline-block;

background:#e8f5e9;

color:#2e7d32;

padding:8px 20px;

border-radius:30px;

font-weight:600;

margin-bottom:18px;

}

.section-heading h2{

font-size:42px;

font-weight:700;

margin-bottom:20px;

}

.section-heading p{

font-size:18px;

color:#666;

max-width:850px;

margin:auto;

line-height:34px;

}

.stay-card-new{

position:relative;

background:#fff;

border-radius:22px;

padding:45px;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

overflow:hidden;

}

.stay-card-new:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.package-card{

border-top:6px solid #2e7d32;

}

.room-card{

border-top:6px solid #d4a017;

}

.popular-ribbon{

position:absolute;

right:-38px;

top:20px;

background:#2e7d32;

color:#fff;

padding:10px 50px;

transform:rotate(45deg);

font-size:13px;

font-weight:700;

}

.stay-icon{

width:80px;

height:80px;

border-radius:50%;

background:#f5f5f5;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:25px;

color:#2e7d32;

}

.stay-card-new h3{

font-size:30px;

font-weight:700;

margin-bottom:15px;

}

.stay-price{

font-size:42px;

font-weight:800;

color:#2e7d32;

margin-bottom:25px;

}

.room-card .stay-price{

color:#d4a017;

}

.stay-price span{

display:block;

font-size:16px;

color:#777;

font-weight:500;

}

.stay-card-new ul{

list-style:none;

padding:0;

margin:30px 0;

}

.stay-card-new li{

font-size:18px;

margin-bottom:18px;

display:flex;

align-items:center;

gap:12px;

}

.stay-card-new li i{

color:#2e7d32;

font-size:18px;

}

.stay-note-new{

background:#f8f8f8;

padding:18px;

border-radius:12px;

margin-bottom:30px;

font-size:15px;

}

.stay-book-btn{

display:block;

text-align:center;

padding:16px;

border-radius:12px;

font-size:18px;

font-weight:700;

text-decoration:none;

color:#fff;

transition:.3s;

}

.package-btn{

background:#2e7d32;

}

.package-btn:hover{

background:#1b5e20;

color:#fff;

}

.room-btn{

background:#d4a017;

}

.room-btn:hover{

background:#b8860b;

color:#fff;

}

/*=====================================================
PACKAGE FOOD MENU
=====================================================*/

.food-menu-section{

padding:40px 0;

background:#f7faf7;

}

.menu-card{

background:#fff;

padding:35px;

border-radius:20px;

height:100%;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

text-align:center;

}

.menu-card:hover{

transform:translateY(-8px);

}

.menu-icon{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

margin-bottom:20px;

color:#fff;

}

.breakfast .menu-icon{

background:#F9A825;

}

.lunch .menu-icon{

background:#2E7D32;

}

.snacks .menu-icon{

background:#EF6C00;

}

.dinner .menu-icon{

background:#5D4037;

}

.menu-card h3{

font-size:28px;

font-weight:700;

margin-bottom:20px;

}

.menu-card ul{

padding:0;

margin:0;

list-style:none;

}

.menu-card li{

padding:10px 0;

font-size:17px;

border-bottom:1px dashed #ddd;

}

.menu-card li:last-child{

border:none;

}

.food-note{

margin-top:45px;

background:#FFF8E1;

padding:22px;

border-left:6px solid #FBC02D;

border-radius:12px;

font-size:16px;

color:#555;

}

/*=====================================================
WHY CHOOSE THIS STAY
=====================================================*/

.why-room-section{

padding:70px 0;

background:#ffffff;

}

.why-card{

background:#fff;

padding:35px;

height:100%;

border-radius:18px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

border-top:5px solid transparent;

}

.why-card:hover{

transform:translateY(-10px);

border-color:#2E7D32;

box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.why-card i{

width:90px;

height:90px;

line-height:90px;

border-radius:50%;

background:#E8F5E9;

color:#2E7D32;

font-size:34px;

margin-bottom:22px;

}

.why-card h4{

font-size:23px;

font-weight:700;

margin-bottom:15px;

}

.why-card p{

font-size:16px;

line-height:28px;

color:#666;

margin:0;

}

/*=====================================================
AMENITIES
======================================================*/

.amenities-section{

padding:60px 0;

background:#f8faf8;

}

.amenity-card{

background:#fff;

border-radius:20px;

padding:35px 20px;

text-align:center;

height:100%;

transition:.35s;

box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.amenity-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.amenity-icon{

width:85px;

height:85px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#2E7D32,#4CAF50);

display:flex;

align-items:center;

justify-content:center;

margin-bottom:22px;

}

.amenity-icon i{

font-size:34px;

color:#fff;

}

.amenity-card h5{

font-size:19px;

font-weight:700;

line-height:30px;

margin:0;

}

/*=====================================================
IMPORTANT INFORMATION
======================================================*/

.important-info-section{

padding:60px 0;

background:#ffffff;

}

.info-card{

background:#fff;

padding:35px;

border-radius:20px;

height:100%;

text-align:center;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

}

.info-card:hover{

transform:translateY(-8px);

box-shadow:0 22px 45px rgba(0,0,0,.12);

}

.info-icon{

width:85px;

height:85px;

margin:auto;

margin-bottom:22px;

border-radius:50%;

background:linear-gradient(135deg,#0F5132,#2E7D32);

display:flex;

align-items:center;

justify-content:center;

}

.info-icon i{

font-size:34px;

color:#fff;

}

.info-card h4{

font-size:24px;

font-weight:700;

margin-bottom:18px;

}

.info-card p{

font-size:16px;

line-height:30px;

color:#666;

margin:0;

}



/*=====================================================
BOOKING CTA
======================================================*/

.booking-cta-section{

background:url('../images/cta-bg.jpg') center center/cover no-repeat;

position:relative;

padding:30px 0;

margin-top:30px;

}

.booking-overlay{

background:rgba(10,35,15,.78);

padding:80px 0;

}

.cta-tag{

display:inline-block;

background:#ffffff22;

color:#fff;

padding:8px 20px;

border-radius:30px;

margin-bottom:20px;

font-weight:600;

}

.booking-cta-section h2{

font-size:46px;

color:#fff;

font-weight:700;

margin-bottom:25px;

}

.booking-cta-section p{

color:#f4f4f4;

font-size:18px;

line-height:34px;

max-width:700px;

}

.cta-buttons{

display:flex;

flex-direction:column;

gap:18px;

}

.cta-buttons a{

text-decoration:none;

padding:18px;

border-radius:14px;

font-size:18px;

font-weight:700;

transition:.3s;

display:flex;

align-items:center;

justify-content:center;

gap:12px;

}

.cta-call{

background:#2E7D32;

color:#fff;

}

.cta-call:hover{

background:#1B5E20;

color:#fff;

}

.cta-whatsapp{

background:#25D366;

color:#fff;

}

.cta-whatsapp:hover{

background:#1DA851;

color:#fff;

}

.cta-email{

background:#F4B400;

color:#222;

}

.cta-email:hover{

background:#D89C00;

color:#222;

}

@media(max-width:991px){

.booking-cta-section{

text-align:center;

}

.booking-cta-section h2{

font-size:34px;

}

.cta-buttons{

margin-top:40px;

}

}