*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#222;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.nav{
height:80px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:32px;
font-weight:800;
}

.logo span{
color:#ff6b00;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav a{
text-decoration:none;
color:#222;
}

.book-btn{
background:#ff6b00;
color:#fff;
padding:12px 24px;
border-radius:40px;
text-decoration:none;
}

.hero{
padding:80px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.badge{
display:inline-block;
padding:10px 20px;
border:1px solid #ff6b00;
border-radius:40px;
color:#ff6b00;
margin-bottom:20px;
}

.hero h1{
font-size:72px;
font-weight:800;
line-height:1.0;
}

.hero h1 span{
color:#ff6b00;
}

.hero p{
margin:25px 0;
font-size:18px;
}

.hero-btn{
display:flex;
gap:15px;
}

.btn-orange{
background:#ff6b00;
color:#fff;
padding:15px 30px;
border-radius:40px;
text-decoration:none;
}

.btn-outline{
border:2px solid #ff6b00;
padding:15px 30px;
border-radius:40px;
text-decoration:none;
color:#ff6b00;
}

.main-image,
.small-image,
.phone-anchor,
.booking-image{
overflow:hidden;
}

.img-anchor{
height:650px;
border-radius:30px;
}

.main-image{
height:450px;
border-radius:25px;
}

.small-image{
height:210px;
border-radius:20px;
}

.phone-anchor{
height:500px;
border-radius:30px;
}

.booking-image{
height:450px;
border-radius:30px;
}

.floating-card{
position:absolute;
right:-30px;
top:100px;
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.hero-image{
position:relative;
}

.features,
.facilities,
.about,
.stats,
.booking,
.cta{
padding:80px 0;
}

.feature-grid,
.facility-grid,
.stat-grid{
display:grid;
gap:20px;
}

.feature-grid{
grid-template-columns:repeat(3,1fr);
}

.facility-grid{
grid-template-columns:repeat(6,1fr);
}

.stat-grid{
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.feature-box,
.facility{
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
text-align:center;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1.3fr;
gap:40px;
align-items:center;
}

.about-gallery{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
}

.steps{
display:flex;
gap:20px;
margin-top:30px;
}

.step{
text-align:center;
}

.step span{
display:block;
width:50px;
height:50px;
line-height:50px;
background:#ff6b00;
color:#fff;
border-radius:50%;
margin:auto auto 10px;
}

.booking-grid{
display:grid;
grid-template-columns:300px 1fr 400px;
gap:30px;
align-items:center;
}

.cta-box{
background:#ff6b00;
padding:50px;
border-radius:30px;
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
}

footer{
padding:30px;
text-align:center;
background:#111;
color:#fff;
}

.mobile-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

@media(max-width:992px){

.hero-grid,
.about-grid,
.booking-grid{
grid-template-columns:1fr;
}

.facility-grid{
grid-template-columns:repeat(2,1fr);
}

.feature-grid{
grid-template-columns:1fr;
}

.stat-grid{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:48px;
}

.cta-box{
flex-direction:column;
gap:20px;
text-align:center;
}
}

@media(max-width:768px){

nav{
display:none;
}

.mobile-toggle{
display:block;
}

.hero h1{
font-size:38px;
}

.facility-grid{
grid-template-columns:1fr;
}

.stat-grid{
grid-template-columns:1fr;
}

.hero-btn{
flex-direction:column;
}

.floating-card{
position:relative;
right:auto;
top:auto;
margin-top:20px;
}
}
/* ==========================
   ICON COLOR
========================== */

i,
.fa,
.fas,
.far,
.fab{
    color:#ff6b00;
}

/* ==========================
   IMAGE SETTINGS
========================== */

.hero-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    display:block;
}

.main-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:25px;
    display:block;
}

.small-image img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

.phone-anchor img{
    width:100%;
    max-width:280px;
    display:block;
    margin:auto;
}

.booking-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:30px;
    display:block;
}

.hero-image img,
.main-image img,
.small-image img,
.booking-image img{
    transition:.4s;
}

.hero-image:hover img,
.main-image:hover img,
.small-image:hover img,
.booking-image:hover img{
    transform:scale(1.04);
}