*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f9f6f0;
color:#333;
}

.container{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

header{
background:white;
position:sticky;
top:0;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.nav ul{
display:flex;
list-style:none;
gap:20px;
}

.nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.logo{
font-weight:600;
color:#e67e22;
}

.hero{
background:url("https://images.unsplash.com/photo-1529068755536-a5ade6d1f0b4") center/cover;
height:500px;
position:relative;
}

.hero-overlay{
background:rgba(0,0,0,0.6);
height:100%;
display:flex;
align-items:center;
text-align:center;
color:white;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
margin-bottom:20px;
}

.btn{
padding:12px 22px;
border-radius:6px;
text-decoration:none;
color:white;
margin:5px;
}

.primary{
background:#e67e22;
}

.whatsapp{
background:#25D366;
}

.services{
background:white;
}

.services h2,
.process h2,
.testimonials h2,
.faq h2,
.contact h2{
text-align:center;
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;
text-align:center;
}

.card:hover{
transform:translateY(-6px);
}

.process{
background:#eaf6ff;
}

.step{
text-align:center;
padding:20px;
}

.testimonials{
background:#f4f4f4;
}

.faq-item{
margin-bottom:20px;
}

.contact{
background:white;
text-align:center;
}

footer{
background:#222;
color:white;
text-align:center;
padding:20px;
}

.floating{
position:fixed;
right:20px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-weight:bold;
z-index:999;
}

.floating.whatsapp{
background:#25D366;
bottom:20px;
}

.floating.call{
background:#e67e22;
bottom:90px;
}