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

body{
font-family:'Inter',sans-serif;
background:#111;
color:white;
line-height:1.6;
}

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

header{
background:#000;
position:sticky;
top:0;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-weight:800;
line-height:1.1;
}

.logo span{
color:#f4b400;
}

nav a{
color:white;
text-decoration:none;
margin:0 12px;
}

.call-btn{
background:#f4b400;
padding:12px 20px;
border-radius:40px;
text-decoration:none;
font-weight:700;
color:black;
}

.hero{
height:100vh;
background:url('images/night-breakdown.jpg') center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
position:relative;
text-align:center;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.hero h1{
font-size:4rem;
margin-bottom:20px;
}

.hero p{
margin-bottom:30px;
font-size:1.2rem;
}

.hero-btn{
display:inline-block;
background:#f4b400;
padding:18px 35px;
border-radius:50px;
font-weight:800;
text-decoration:none;
color:black;
}

.services-preview{
padding:100px 0;
background:#1a1a1a;
}

.services-preview h2{
text-align:center;
margin-bottom:50px;
font-size:2.5rem;
}

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

.card{
background:#222;
padding:35px;
border-radius:20px;
}

.card h3{
margin-bottom:15px;
color:#f4b400;
}

.image-section{
display:grid;
grid-template-columns:1fr 1fr;
}

.image-left img{
width:100%;
height:100%;
object-fit:cover;
}

.image-right{
padding:80px;
display:flex;
flex-direction:column;
justify-content:center;
}

.dark-btn{
margin-top:20px;
display:inline-block;
background:#f4b400;
padding:14px 25px;
border-radius:40px;
text-decoration:none;
font-weight:700;
color:black;
width:fit-content;
}

.cta-section{
height:500px;
background:url('images/desert-breakdown.jpg') center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
position:relative;
text-align:center;
}

.cta-content{
position:relative;
z-index:2;
}

.page-hero{
height:60vh;
display:flex;
justify-content:center;
align-items:center;
position:relative;
text-align:center;
}

.service-hero{
background:url('images/tire-shop.jpg') center/cover no-repeat;
}

.area-hero{
background:url('images/spinning-wheel.jpg') center/cover no-repeat;
}

.about-hero{
background:url('images/roadside-help.jpg') center/cover no-repeat;
}

.service-list,
.about-section,
.area-grid,
.contact-page{
padding:100px 0;
}

.area-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.service-item{
margin-bottom:40px;
}

footer{
background:#000;
padding:60px 0;
}

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

footer ul{
list-style:none;
}

footer a{
color:white;
text-decoration:none;
}

.contact-box{
text-align:center;
}

.floating-call{
position:fixed;
bottom:20px;
right:20px;
}

.floating-call a{
background:#f4b400;
padding:18px 24px;
border-radius:50px;
text-decoration:none;
font-weight:800;
color:black;
}

@media(max-width:900px){

nav{
display:none;
}

.hero h1{
font-size:2.5rem;
}

.image-section{
grid-template-columns:1fr;
}

.image-right{
padding:40px;
}

}
