*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins;
background:#f5f7fb;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-weight:700;
font-size:22px;
color:#1e88e5;
}

nav a{
margin:0 10px;
text-decoration:none;
color:#333;
font-weight:500;
}

.phone-button{
background:#1e88e5;
color:white;
padding:10px 16px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.hero{
height:85vh;
background:url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1600&q=80");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
position:relative;
color:white;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
max-width:600px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero-buttons{
margin-top:20px;
}

.btn-main{
background:#1e88e5;
padding:14px 22px;
border-radius:8px;
text-decoration:none;
color:white;
margin-right:10px;
font-weight:600;
}

.btn-outline{
border:2px solid white;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
color:white;
}

.phone-banner{
background:#1e88e5;
color:white;
text-align:center;
padding:40px 10px;
}

.phone-banner a{
display:block;
font-size:34px;
color:white;
font-weight:700;
text-decoration:none;
margin-top:10px;
}

.services{
padding:80px 0;
background:white;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:40px;
}

.service{
background:#f5f7fb;
padding:30px;
border-radius:10px;
text-align:center;
}

.service i{
font-size:30px;
color:#1e88e5;
margin-bottom:10px;
}

.why{
position:relative;
padding:120px 0;
background:url("https://images.unsplash.com/photo-1598300056393-4aac492f4344?auto=format&fit=crop&w=1600&q=80");
background-size:cover;
background-position:center;
color:white;
}

.why-content{
position:relative;
text-align:center;
}

.why-grid{
margin-top:50px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.why-grid i{
font-size:32px;
color:#4da3ff;
margin-bottom:10px;
}

.reviews{
padding:90px 0;
background:#f5f7fb;
text-align:center;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.review{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.stars{
color:#f7b500;
font-size:20px;
}

.pricing{
padding:80px 0;
background:white;
text-align:center;
}

.price-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
margin-top:40px;
}

.price-card{
background:#f5f7fb;
padding:30px;
border-radius:10px;
}

.price-card p{
font-size:28px;
font-weight:700;
color:#1e88e5;
}

.contact{
padding:80px 0;
text-align:center;
}

.big-phone{
font-size:38px;
font-weight:700;
color:#1e88e5;
text-decoration:none;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:60px;
}