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

body{
font-family:'Inter',sans-serif;
background:#020617;
color:white;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1250px;
margin:auto;
}

.hero{
position:relative;
min-height:100vh;
background:
linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.70)),
url('images/hero-car.jpg');
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 5%;
background:rgba(0,0,0,.45);
backdrop-filter:blur(16px);
border-bottom:1px solid rgba(255,255,255,.08);
z-index:999;
}

.logo{
width:240px;
}

.nav-right{
display:flex;
align-items:center;
gap:35px;
}

.nav-right a{
color:white;
text-decoration:none;
font-weight:600;
font-size:15px;
letter-spacing:.5px;
position:relative;
transition:.3s;
}

.nav-right a:hover{
color:#ff8800;
}

.nav-right a::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:#ff8800;
transition:.3s;
}

.nav-right a:hover::after{
width:100%;
}

.phone-btn{
background:linear-gradient(135deg,#ff8800,#ff6600);
padding:16px 26px;
border-radius:14px;
font-weight:700!important;
box-shadow:0 10px 30px rgba(255,136,0,.25);
}

.hero-content{
flex:1;
display:flex;
align-items:center;
width:90%;
max-width:1250px;
margin:auto;
padding-top:100px;
}

.subtitle{
letter-spacing:3px;
color:#d1d5db;
margin-bottom:25px;
font-size:14px;
text-transform:uppercase;
}

h1{
font-family:'Oswald',sans-serif;
font-size:120px;
line-height:.95;
margin-bottom:35px;
}

h1 span{
color:#ff8800;
}

.intro{
font-size:24px;
max-width:700px;
margin-bottom:35px;
color:#e5e7eb;
}

.checks{
list-style:none;
margin-bottom:45px;
}

.checks li{
margin-bottom:14px;
font-size:20px;
}

.buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:18px 36px;
border-radius:16px;
text-decoration:none;
font-weight:700;
display:inline-block;
transition:.3s;
border:none;
cursor:pointer;
}

.orange{
background:linear-gradient(135deg,#ff8800,#ff6600);
color:white;
box-shadow:0 15px 40px rgba(255,136,0,.25);
}

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

.dark{
background:#111827;
color:white;
}

.dark:hover{
background:#1f2937;
}

.services,
.about,
.reviews,
.contact-section{
padding:120px 0;
}

.orange-text{
color:#ff8800;
font-weight:700;
margin-bottom:15px;
letter-spacing:2px;
}

.center{
text-align:center;
}

.section-intro{
max-width:800px;
margin:0 auto 60px auto;
color:#9ca3af;
font-size:20px;
}

h2{
font-family:'Oswald',sans-serif;
font-size:68px;
line-height:1.1;
margin-bottom:30px;
}

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

.card,
.review-card{
background:#0f172a;
padding:45px;
border-radius:28px;
border:1px solid rgba(255,255,255,.06);
transition:.3s;
}

.card:hover,
.review-card:hover{
transform:translateY(-8px);
background:#111c32;
}

.icon{
font-size:38px;
margin-bottom:25px;
}

.card h3{
margin-bottom:20px;
font-size:28px;
color:#ff8800;
}

.card p,
.review-card p{
color:#cbd5e1;
}

.about-grid,
.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.about-image{
width:100%;
border-radius:28px;
box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.stats{
display:flex;
gap:25px;
margin-top:45px;
}

.stat-box{
background:#111827;
padding:35px;
border-radius:22px;
flex:1;
}

.stat-box strong{
display:block;
font-size:44px;
color:#ff8800;
margin-bottom:10px;
}

.review-grid{
margin-top:60px;
}

.stars{
color:#ff8800;
font-size:24px;
margin-bottom:20px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:22px;
}

.contact-form input,
.contact-form textarea{
padding:22px;
border-radius:18px;
background:#0f172a;
border:1px solid rgba(255,255,255,.08);
color:white;
font-size:16px;
transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#ff8800;
box-shadow:0 0 0 4px rgba(255,136,0,.15);
}

.contact-form textarea{
min-height:180px;
resize:vertical;
}

.contact-info{
margin-top:35px;
}

.contact-info p{
margin-bottom:16px;
font-size:18px;
}

.cta{
background:linear-gradient(135deg,#ff8800,#ff6600);
padding:120px 20px;
text-align:center;
color:black;
}

.cta p{
font-size:24px;
margin-bottom:40px;
}

footer{
background:#000;
padding:35px 0;
border-top:1px solid rgba(255,255,255,.06);
}

.footer-content{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
color:#9ca3af;
}

.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
background:#25D366;
color:white;
padding:16px 22px;
border-radius:60px;
text-decoration:none;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
z-index:999;
box-shadow:0 15px 40px rgba(0,0,0,.35);
transition:.3s;
font-size:16px;
}

.whatsapp-float:hover{
transform:translateY(-4px);
box-shadow:0 20px 50px rgba(0,0,0,.45);
}

@media(max-width:900px){

.navbar{
flex-direction:column;
gap:20px;
padding:20px;
}

.nav-right{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.hero-content{
padding-top:180px;
}

h1{
font-size:72px;
}

h2{
font-size:46px;
}

.about-grid,
.contact-grid{
grid-template-columns:1fr;
}

.logo{
width:180px;
}

.intro{
font-size:19px;
}

.checks li{
font-size:18px;
}

.section-intro{
font-size:18px;
}

.stats{
flex-direction:column;
}

}