/* ---------- Layout ---------- */

.ldp-container{
    max-width:1200px;
    margin:40px auto;
    padding:0 15px;
}

/* ---------- Hero ---------- */

.ldp-hero{
    border-radius:20px;
    overflow:hidden;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.ldp-hero img{
    width:100%;
    height:500px;
    object-fit:cover;
}

/* ---------- Card ---------- */

.ldp-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    margin-bottom:30px;

}

/* ---------- Heading ---------- */

.ldp-title{

    font-size:38px;

    font-weight:700;

    margin-bottom:10px;

}

/* ---------- Rating ---------- */

.ldp-rating{

    color:#ff9800;

    font-size:22px;

    margin-bottom:20px;

}

/* ---------- Info ---------- */

.ldp-info{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}

.ldp-info div{

    flex:1 1 250px;

}

/* ---------- Buttons ---------- */

.ldp-buttons{

    margin-top:30px;

}

.ldp-buttons a{

    margin-right:10px;

    margin-bottom:10px;

}

/* ---------- Facilities ---------- */

.ldp-badge{

    display:inline-block;

    padding:8px 16px;

    background:#eef4ff;

    border-radius:30px;

    margin:5px;

    font-weight:600;

}
/* HERO */

.ldp-hero{

position:relative;

margin-bottom:30px;

overflow:hidden;

border-radius:20px;

}

.ldp-hero img{

width:100%;

height:500px;

object-fit:cover;

display:block;

}

.ldp-overlay{

position:absolute;

left:0;

right:0;

top:0;

bottom:0;

background:linear-gradient(
180deg,
rgba(0,0,0,.15),
rgba(0,0,0,.65)
);

display:flex;

align-items:flex-end;

}

.ldp-hero-content{

padding:40px;

color:#fff;

}

.ldp-hero-content h1{

font-size:48px;

margin-bottom:10px;

font-weight:700;

}

.ldp-stars{

font-size:24px;

margin-bottom:10px;

}

.ldp-location{

font-size:20px;

}

.ldp-action-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.ldp-btn{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:10px;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.ldp-btn:hover{
    opacity:.9;
    color:#fff;
}

.ldp-btn-call{
    background:#0B3D91;
}

.ldp-btn-whatsapp{
    background:#25D366;
}

.ldp-btn-website{
    background:#374151;
}

.ldp-btn-map{
    background:#F59E0B;
}

.ldp-btn i{
    margin-right:8px;
}
.ldp-facilities{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-top:20px;

}

.ldp-badge{

display:flex;

align-items:center;

gap:8px;

padding:12px 18px;

background:#EEF4FF;

border-radius:30px;

font-weight:600;

font-size:15px;

}

.ldp-badge i{

color:#0B3D91;

font-size:18px;

}