/* ===== RESET ===== */

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

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

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

/* ===== HEADER ===== */

.site-header{
background:#0b2239;
color:white;
}

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

.logo{
color:white;
text-decoration:none;
font-weight:bold;
font-size:20px;
}

.header-actions{
display:flex;
gap:12px;
align-items:center;
}

.quote-btn{
background:#2563eb;
color:#fff;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:600;
font-size:14px;
}

.call-btn{
background:#16a34a;
color:#fff;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:600;
font-size:14px;
}

/* ===== HERO ===== */

.hero-clean{
padding:80px 0;
background:#f7f7f7;
}

.hero-clean-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
max-width:1100px;
margin:0 auto;
}

.hero-clean-content{
max-width:520px;
}

.hero-clean-content h1{
font-size:36px;
margin-bottom:15px;
line-height:1.3;
}

.hero-subtitle{
font-size:18px;
color:#555;
margin-bottom:20px;
}

.hero-buttons{
margin-top:20px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-trust{
margin-top:20px;
display:flex;
gap:15px;
flex-wrap:wrap;
font-size:14px;
color:#444;
}

.hero-clean-image{
text-align:center;
}

.hero-clean-image img{
width:100%;
max-width:320px;
height:auto;
display:block;
margin:0 auto;
}

/* ===== CONTENT ===== */

.content-section{
padding:70px 0;
}

.content-section h2{
margin-bottom:20px;
font-size:28px;
}

.content-section p{
margin-bottom:16px;
}

.content-section ul{
margin-left:20px;
margin-bottom:20px;
}

.content-section li{
margin-bottom:8px;
}

.content-section a{
color:#0a84ff;
text-decoration:none;
}

.content-section a:hover{
text-decoration:underline;
}

/* ===== GRID ===== */

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

.card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* ===== REVIEWS ===== */

.reviews-section{
background:#f4f7fb;
padding:80px 0;
text-align:center;
}

.reviews-section h2{
margin-bottom:15px;
font-size:28px;
}

.stars{
color:#ffb400;
font-size:22px;
margin-bottom:30px;
font-weight:600;
}

/* ===== CTA ===== */

.cta{
background:#2c73b8;
color:white;
text-align:center;
padding:80px 20px;
}

.cta h2{
margin-bottom:15px;
}

.cta p{
margin-bottom:20px;
}

/* ===== FOOTER ===== */

.site-footer{
background:#0b2239;
color:#ddd;
padding:40px 0;
margin-top:40px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.site-footer a{
color:#9fd1ff;
text-decoration:none;
display:block;
margin-top:8px;
}

.copyright{
text-align:center;
margin-top:20px;
font-size:14px;
}

/* ===== FLOAT BUTTONS ===== */

.call-float{
position:fixed;
bottom:90px;
right:20px;
background:#16a34a;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
z-index:9999;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
z-index:9999;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.header-container{
flex-direction:column;
gap:15px;
}

.hero-clean-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-clean-image img{
max-width:260px;
margin-top:25px;
}

.hero-buttons{
justify-content:center;
}

.hero-trust{
justify-content:center;
}

.estimate-section{

background:#f8fafc;

padding:80px 0;

text-align:center;

}

.estimate-box{

max-width:500px;

margin:auto;

display:flex;

flex-direction:column;

gap:15px;

}

.estimate-box input,
.estimate-box select{

padding:12px;

border-radius:8px;

border:1px solid #ddd;

font-size:16px;

}

#priceResult{

margin-top:20px;

color:#16a34a;

font-size:24px;

}
