*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f5f5;
color:#222;
}

.container{
width:90%;
margin:auto;
}

.flex-between{
display:flex;
justify-content:space-between;
align-items:center;
}

.topbar{
background:#111;
color:#fff;
padding:10px 0;
font-size:14px;
}

.social i{
margin-left:10px;
cursor:pointer;
}

.header{
position:sticky;
top:0;
background:#fff;
padding:20px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:999;
}

.logo{
font-size:28px;
font-weight:bold;
color:#c89b3c;
}

nav a{
margin:0 12px;
text-decoration:none;
color:#222;
font-weight:bold;
}

.hero{
height:90vh;
background:url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=1600') center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
}

.smallhero{
height:60vh;
}

.overlay{
background:rgba(0,0,0,0.5);
padding:40px;
color:#fff;
text-align:center;
border-radius:10px;
}

.overlay h1{
font-size:60px;
margin-bottom:15px;
}

.section{
padding:80px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:250px;
object-fit:cover;
}

.card h3,
.card p{
padding:10px 20px;
}

.btn{
display:inline-block;
background:#c89b3c;
color:#fff;
padding:12px 24px;
text-decoration:none;
border:none;
border-radius:6px;
cursor:pointer;
margin:15px 20px;
}

.small{
padding:10px 18px;
}

.footer{
background:#111;
color:#fff;
text-align:center;
padding:40px 20px;
}

.backtop,
.whatsapp{
position:fixed;
bottom:20px;
width:50px;
height:50px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:22px;
color:#fff;
}

.backtop{
right:20px;
background:#000;
}

.whatsapp{
left:20px;
background:#25d366;
}

.details-flex{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.left{
flex:1;
}

.form-box{
flex:1;
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.form-box input,
.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:6px;
}

.contact-form textarea{
height:150px;
}

.simple-header{
background:#111;
color:#fff;
padding:30px;
text-align:center;
}

.simple-header nav a{
color:#fff;
}

@media(max-width:768px){

.overlay h1{
font-size:36px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

}
