.villa-page{
max-width:1600px;
margin:0 auto;
padding:0 20px;
}

/* HERO GALLERY */

.villa-hero-gallery{
display:grid;
grid-template-columns:70% 30%;
gap:15px;
margin:40px 0;
}

.main-image{
height:620px;
}

.main-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:16px;
display:block;
}

.thumbnail-grid{
display:grid;
grid-template-columns:1fr 1fr;
grid-template-rows:repeat(2,304px);
gap:12px;
}

.thumbnail-grid img{
width:100%;
height:100%;
object-fit:cover;
border-radius:16px;
display:block;
}

.villa-page img{
max-width:100%;
}

/* MAIN LAYOUT */

.villa-wrapper{
max-width:1500px;
margin:40px auto;
padding:0 20px;
display:grid;
grid-template-columns:65% 35%;
gap:30px;
}

.villa-title{
font-size:48px;
font-weight:700;
margin-bottom:20px;
}

.villa-meta{
display:flex;
flex-wrap:wrap;
gap:30px;
font-size:18px;
color:#444;
margin-bottom:40px;
}

.villa-section{
margin-bottom:50px;
}

.villa-section h2{
font-size:32px;
margin-bottom:20px;
}

.villa-section p{
line-height:1.9;
font-size:18px;
color:#444;
}

/* AMENITIES */

/* PREMIUM AMENITIES */

.villa-amenities{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-top:25px;
}

.amenity-item{
display:flex;
align-items:center;
gap:18px;
background:#fafafa;
border:1px solid #e9e9e9;
padding:18px 22px;
border-radius:14px;
font-size:17px;
font-weight:600;
color:#222;
transition:.3s;
position:relative;
}

.amenity-item::before{
content:"✓";
width:38px;
height:38px;
background:linear-gradient(135deg,#ff6b6b,#ff4d4d);
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
font-weight:700;
flex-shrink:0;
}

.amenity-item:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
border-color:#ff6b6b;
}
/* PROPERTY INFO */

.villa-features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.feature-card{
background:#fff;
padding:25px;
border-radius:12px;
border:1px solid #e5e5e5;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.feature-card strong{
display:block;
color:#DA1C4B;
margin-bottom:10px;
}

/* HOUSE RULES */

.villa-rules{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.rule-item{
background:#fff;
padding:18px 20px;
border-radius:12px;
border:1px solid #e5e5e5;
}

/* AVAILABILITY */

.availability-box{
background:#fff;
padding:25px;
border-radius:12px;
border:1px solid #e5e5e5;
}

.availability-box pre{
white-space:pre-wrap;
font-family:inherit;
line-height:1.8;
margin:0;
}

/* MAP */

.villa-map{
overflow:hidden;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.villa-map iframe{
width:100%;
height:450px;
border:0;
}

/* BOOKING BOX */

.villa-booking-box{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:sticky;
top:100px;
height:fit-content;
}

.villa-price{
font-size:36px;
font-weight:700;
margin-bottom:15px;
}

.villa-price span{
font-size:18px;
color:#777;
}

.villa-booking-form{
display:flex;
flex-direction:column;
gap:15px;
}

.villa-booking-form{
gap:10px;
}

.villa-booking-form input,
.villa-booking-form select{
height:46px;
padding:8px 12px;
font-size:14px;
margin-bottom:0;
}

.villa-book-btn{
display:block;
width:100%;
padding:16px;
background:#DA1C4B;
color:#fff;
border-radius:10px;
text-align:center;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.villa-book-btn:hover{
background:#b81542;
transform:translateY(-2px);
}

/* SIMILAR VILLAS */

.similar-villas{
max-width:1400px;
margin:80px auto;
padding:0 20px;
}

.similar-villas h2{
margin-bottom:30px;
}

.similar-villas-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.villa-card{
background:#fff;
border-radius:15px;
overflow:hidden;
text-decoration:none;
color:#111;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.villa-card:hover{
transform:translateY(-5px);
}

.villa-card img{
width:100%;
height:250px;
object-fit:cover;
}

.villa-card-content{
padding:20px;
}

.villa-card-content h3{
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:768px){

.villa-hero-gallery{
    grid-template-columns:1fr;
}

.main-image{
    height:350px;
}

.thumbnail-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:170px 170px;
}

.villa-wrapper{
    grid-template-columns:1fr;
}

.villa-title{
    font-size:34px;
}

.villa-meta{
    gap:15px;
    font-size:15px;
}

.villa-amenities{
    grid-template-columns:1fr;
}

.villa-features{
    grid-template-columns:1fr;
}

.villa-rules{
    grid-template-columns:1fr;
}

.similar-villas-grid{
    grid-template-columns:1fr;
}

.villa-booking-box{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:sticky;
top:100px;
height:fit-content;
}


}

/* AVAILABILITY LIST */

.availability-list{
    list-style:none;
    padding:0;
    margin:0;
}

.availability-list li{
    padding:14px 18px;
    margin-bottom:10px;
    background:#f8f8f8;
    border-radius:10px;
    border:1px solid #eee;
    font-size:16px;
}
#booking-total{
    background:#f8f8f8;
    padding:15px;
    border-radius:10px;
    font-weight:600;
    text-align:center;
}
/* ===================================
   LT AMBEY PREMIUM UPGRADE
=================================== */

body{
background:#fafafa;
}

.villa-page{
padding-top:20px;
}

.villa-title{
font-size:56px;
font-weight:800;
line-height:1.1;
color:#111;
margin-bottom:25px;
}

.villa-meta{
background:#fff;
padding:20px 25px;
border-radius:14px;
box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.villa-section{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.villa-section h2{
font-size:28px;
font-weight:700;
margin-bottom:20px;
color:#111;
}

.villa-section p{
font-size:17px;
line-height:1.9;
}

/* HERO */

.main-image img{
border-radius:22px;
}

.thumbnail-grid img{
border-radius:22px;
transition:.4s;
}

.thumbnail-grid img:hover{
transform:scale(1.02);
}

/* BOOKING CARD */

.villa-booking-box{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:sticky;
top:100px;
height:fit-content;
}

.villa-price{
font-size:36px;
font-weight:700;
margin-bottom:15px;
}

.villa-price span{
display:block;
margin-top:5px;
font-size:16px;
}

.villa-booking-form{
gap:10px;
}

.villa-booking-form input,
.villa-booking-form select{
height:42px;
padding:8px 12px;
font-size:14px;
margin-bottom:0;
}

.villa-booking-form input:focus{
outline:none;
border-color:#DA1C4B;
box-shadow:0 0 0 3px rgba(218,28,75,.1);
}

#booking-total{
background:#fff5f8;
border:1px solid #ffd3df;
color:#DA1C4B;
font-size:18px;
font-weight:700;
padding:18px;
}

/* AMENITIES */

.villa-amenities{
gap:20px;
}

.amenity-item{
padding:20px;
border-radius:15px;
font-weight:500;
background:#fff;
}

.amenity-item:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* PROPERTY INFO */

.feature-card{
padding:28px;
border-radius:16px;
transition:.3s;
}

.feature-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-card strong{
font-size:14px;
text-transform:uppercase;
letter-spacing:.5px;
}

/* HOUSE RULES */

.rule-item{
border-radius:14px;
font-weight:500;
background:#fff;
}

/* MAP */

.villa-map{
border-radius:22px;
overflow:hidden;
}

/* SIMILAR VILLAS */

.similar-villas h2{
font-size:38px;
font-weight:700;
margin-bottom:35px;
}

.villa-card{
border-radius:22px;
overflow:hidden;
background:#fff;
}

.villa-card img{
height:280px;
transition:.5s;
}

.villa-card:hover img{
transform:scale(1.05);
}

.villa-card-content{
padding:25px;
}

.villa-card-content h3{
font-size:24px;
margin-bottom:10px;
}

.villa-card-content p{
font-size:18px;
font-weight:700;
color:#DA1C4B;
}

.login-required-box{
background:#fff;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.login-required-box h3{
margin-bottom:10px;
}

.login-required-box p{
margin-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

.villa-title{
font-size:34px;
}

.villa-section{
padding:25px;
}

.villa-price{
font-size:36px;
font-weight:700;
margin-bottom:15px;
}

.villa-booking-box{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:sticky;
top:100px;
height:fit-content;
}

}
.sms-header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.sms-header-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.villa-booking-box{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:sticky;
top:100px;
height:fit-content;
}

.villa-booking-form{
gap:10px;
}

.villa-booking-form input,
.villa-booking-form select{
height:42px;
padding:8px 12px;
font-size:14px;
margin-bottom:0;
}

#booking-total{
padding:10px;
font-size:15px;
margin:8px 0;
}

#booking-total{
    padding:10px 0;
    font-size:15px;
}

/* BOOKING CARD FINAL */

.villa-wrapper{
    grid-template-columns:60% 40%;
    gap:25px;
}

.villa-booking-box{
    background:#fff;
    padding:15px;
    border-radius:18px;
    position:sticky;
    top:80px;
}

.villa-price{
    font-size:32px;
    line-height:1;
    margin-bottom:8px;
}

.villa-price span{
    font-size:14px;
}

.villa-booking-form{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.villa-booking-form input,
.villa-booking-form select{
    height:40px;
    padding:8px 12px;
    font-size:14px;
    border-radius:8px;
}

.booking-dates{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
}

#booking-total{
    padding:8px;
    font-size:14px;
    margin:4px 0;
}

.villa-book-btn{
    height:44px;
    padding:0;
    font-size:15px;
}

@media(max-width:768px){

    .villa-wrapper{
        grid-template-columns:1fr;
    }

    .villa-booking-box{
        width:100%;
        max-width:none;
    }

}

.booking-dates{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.booking-dates input{
    width:100%;
}

/* PREMIUM BOOKING CARD */

.villa-booking-box{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid #f1f1f1;
}

.villa-price{
    color:#DA1C4B;
    font-size:48px;
    font-weight:800;
    margin-bottom:5px;
}

.villa-price span{
    color:#888;
    font-size:16px;
    font-weight:500;
}

.villa-booking-form input,
.villa-booking-form select{
    background:#fafafa;
    border:1px solid #e5e5e5;
    border-radius:14px;
    height:52px;
    transition:.3s;
}

.villa-booking-form input:focus,
.villa-booking-form select:focus{
    border-color:#DA1C4B;
    background:#fff;
    box-shadow:0 0 0 4px rgba(218,28,75,.08);
}

.booking-dates{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

#booking-total{
    background:#fff5f8;
    border:1px solid #ffd7e3;
    border-radius:14px;
    color:#DA1C4B;
    font-size:18px;
    font-weight:700;
    padding:14px;
    text-align:center;
}

.villa-book-btn{
    height:56px;
    border:none;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #DA1C4B,
        #ff4d6d
    );
    font-size:18px;
    font-weight:700;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.villa-book-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(218,28,75,.25);
}

.thumbnail-grid a,
.main-image a{
display:block;
width:100%;
height:100%;
}

.thumbnail-grid a img,
.main-image a img{
width:100%;
height:100%;
object-fit:cover;
cursor:pointer;
transition:.3s;
}

.thumbnail-grid a:hover img,
.main-image a:hover img{
transform:scale(1.02);
}

/* VIEW ALL PHOTOS BUTTON */

.main-image{
position:relative;
}

.view-all-photos{
position:absolute;
bottom:25px;
right:25px;
background:#fff;
color:#111;
border:none;
padding:12px 18px;
border-radius:12px;
font-size:15px;
font-weight:600;
cursor:pointer;
box-shadow:0 5px 20px rgba(0,0,0,.15);
transition:.3s;
z-index:10;
}

.view-all-photos:hover{
transform:translateY(-2px);
}

/* FIX GALLERY */

.villa-hero-gallery{
display:grid;
grid-template-columns:70% 30%;
gap:15px;
margin:40px 0;
}

.main-image{
height:620px;
overflow:hidden;
border-radius:20px;
}

.main-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.thumbnail-grid{
display:grid;
grid-template-columns:1fr 1fr;
grid-template-rows:repeat(2,302px);
gap:12px;
}

.thumbnail-grid a{
display:block;
height:100%;
}

.thumbnail-grid img{
width:100%;
height:100%;
object-fit:cover;
border-radius:16px;
transition:.3s;
cursor:pointer;
}

.thumbnail-grid img:hover{
transform:scale(1.03);
}

/* MOBILE */

@media(max-width:768px){

.villa-hero-gallery{
grid-template-columns:1fr;
}

.thumbnail-grid{
display:none;
}

.main-image{
height:350px;
}

.view-all-photos{
bottom:15px;
right:15px;
font-size:13px;
padding:10px 14px;
}

}