*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Manrope',sans-serif;
background:#f7f7f7;
color:#222;
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

nav{
position:sticky;
top:0;
z-index:1000;
background:#111;
padding:15px 0;
box-shadow:0 3px 15px rgba(0,0,0,.2);
}

.nav-logo{
font-size:28px;
font-weight:800;
color:#fff;
}

.nav-logo span{
color:#ffb000;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-weight:600;
}

.hero{
padding:120px 20px 80px;
background:linear-gradient(135deg,#111,#222);
color:white;
text-align:center;
}

.hero h1{
font-size:clamp(36px,6vw,72px);
line-height:1.1;
margin-bottom:20px;
}

.accent{
color:#ffb000;
}

.hero-sub{
max-width:700px;
margin:auto;
font-size:20px;
opacity:.9;
}

.hero-actions{
margin-top:35px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#ffb000;
color:#111;
padding:16px 32px;
border-radius:12px;
font-weight:700;
text-decoration:none;
}

.btn-primary:hover{
transform:translateY(-3px);
}

.btn-outline{
border:2px solid white;
padding:14px 30px;
border-radius:12px;
color:white;
text-decoration:none;
}

.hero-image img{
width:100%;
display:block;
max-height:650px;
object-fit:cover;
}

section{
padding:80px 20px;
}

.section-title{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.service-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

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

.service-card h3{
margin-bottom:15px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
}

.review-card{
background:white;
padding:25px;
border-radius:15px;
margin-bottom:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

#contact{
background:#111;
color:white;
text-align:center;
}

form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
select{
padding:16px;
border:none;
border-radius:10px;
font-size:16px;
}

button{
padding:18px;
background:#ffb000;
border:none;
border-radius:10px;
font-size:18px;
font-weight:700;
cursor:pointer;
}

button:hover{
opacity:.9;
}

@media(max-width:768px){

.nav-links{
display:none;
}

.hero{
padding-top:90px;
}

.hero h1{
font-size:42px;
}

.section-title{
font-size:32px;
}
}
