html{
scroll-behavior:smooth;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('kanopi2.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.logo{
width:110px;
margin-bottom:10px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.hero h1{
font-size:60px;
color:#ff2d2d;
font-weight:800;
}

.hero p{
max-width:700px;
margin:20px auto;
font-size:20px;
color:white;
}

.hero-btn a{
display:inline-block;
padding:15px 35px;
background:#ff2d2d;
color:white;
text-decoration:none;
font-weight:700;
border-radius:50px;
transition:.3s;
}

.hero-btn a:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(255,45,45,.4);
}

.about{
padding:80px 0;
text-align:center;
}

.about h2{
font-size:36px;
margin-bottom:20px;
}

.about p{
font-size:18px;
line-height:1.8;
}

.services{
padding:80px 0;
}

.services h2{
text-align:center;
margin-bottom:40px;
font-size:36px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-box{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
text-align:center;
}

.gallery{
padding:80px 0;
background:#f8f8f8;
}

.gallery h2{
text-align:center;
margin-bottom:40px;
font-size:36px;
}

.why{
padding:100px 0;
background:#111;
color:white;
}

.why h2{
text-align:center;
margin-bottom:50px;
font-size:40px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.why-box{
background:#1d1d1d;
padding:30px;
border-radius:15px;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.card{
overflow:hidden;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:300px;
object-fit:cover;
transition:.4s;
}

.card:hover img{
transform:scale(1.1);
}

.contact{
padding:80px 0;
text-align:center;
}

.contact h2{
font-size:36px;
margin-bottom:20px;
}

.contact p{
margin-bottom:15px;
font-size:18px;
}

.contact-btn{
display:inline-block;
padding:15px 35px;
background:#ff2d2d;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:700;
}

footer{
background:#111;
color:white;
padding:30px;
text-align:center;
}

.wa-float{
position:fixed;
right:20px;
bottom:20px;
z-index:9999;
}

.wa-float a{
background:#25D366;
color:white;
padding:15px 25px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 5px 20px rgba(0,0,0,.3);
}

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.hero p{
font-size:16px;
}

.logo{
width:170px;
}

}

</section>

<section class="testimonial">

<div class="container">

<h2>Apa Kata Pelanggan Kami</h2>

<div class="testi-grid">

<div class="testi-box">
⭐⭐⭐⭐⭐
<p>
Pengerjaan pagar sangat rapi dan cepat. Hasilnya memuaskan.
</p>
<b>- Pak Andi, Sukabumi</b>
</div>

<div class="testi-box">
⭐⭐⭐⭐⭐
<p>
Kanopi membran bagus dan sesuai desain yang saya inginkan.
</p>
<b>- Ibu Rina, Cibadak</b>
</div>

<div class="testi-box">
⭐⭐⭐⭐⭐
<p>
Pintu harmonika kuat, pemasangan cepat dan harga masuk akal.
</p>
<b>- Toko Berkah Jaya</b>
</div>

</div>

</div>

</section>

<section class="contact">

.maps{
padding:80px 0;
background:#fff;
}

.maps h2{
text-align:center;
font-size:36px;
margin-bottom:30px;
color:#222;
}

.service-link{
text-decoration:none;
color:inherit;
display:block;
}

.service-box{
cursor:pointer;
}

.service-box:hover{
transform:translateY(-5px);
transition:0.3s;
}