*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#222;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.hero img{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
z-index:1;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
z-index:2;
text-align:center;
color:#fff;
width:90%;
}

.hero h1{
font-size:60px;
margin-bottom:15px;
}

.hero p{
font-size:22px;
margin-bottom:25px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#d4af37;
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:600;
}

section{
padding:80px 0;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:38px;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
padding:30px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
border-radius:15px;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.grid img{
width:100%;
border-radius:15px;
transition:.3s;
cursor:pointer;
}

.grid img:hover{
transform:scale(1.03);
}

.item{
text-align:center;
}

.item span{
display:block;
padding-top:10px;
font-weight:600;
}

.map{
width:100%;
border-radius:15px;
}

.enquiry{
background:#f7f7f7;
}

form{
max-width:700px;
margin:auto;
}

input{
width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;
}

button{
width:100%;
padding:15px;
background:#d4af37;
border:none;
color:#fff;
font-size:18px;
cursor:pointer;
border-radius:8px;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:25px;
}

#msg{
text-align:center;
margin-top:20px;
font-weight:600;
}

@media(max-width:768px){

.hero h1{
font-size:34px;
}

.cards,
.grid{
grid-template-columns:1fr;
}

section{
padding:60px 0;
}

}