*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f6f7f9;
color:#333;
line-height:1.6;
}

/* NAVBAR */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:white;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:22px;
font-weight:bold;
color:#111;
}

.logo span{
color:#e63946;
}

nav a{
margin:0 15px;
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#e63946;
}

.phone a{
background:#e63946;
color:white;
padding:8px 16px;
border-radius:5px;
text-decoration:none;
font-size:14px;
}

/* HERO */

.hero{
height:90vh;
background:url("https://i0.wp.com/amatosautobody.com/wp-content/uploads/2025/01/Auto_Body_Painting_in_San_Diego_CA_Professional_Techniques_and_Color_Matching1.jpg?fit=1021%2C575&ssl=1") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.btn{
background:#e63946;
color:white;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
display:inline-block;
}

/* ABOUT */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:80px 10%;
align-items:center;
}

.about img{
width:100%;
border-radius:8px;
}

.about h2{
margin-bottom:20px;
font-size:32px;
}

/* INFO SECTION */

.info{
text-align:center;
padding:70px 10%;
background:#fff;
}

.info h2{
margin-bottom:15px;
font-size:30px;
}

/* SERVICES */

.services{
padding:80px 10%;
background:#f8f9fb;
text-align:center;
}

.services h2{
font-size:34px;
margin-bottom:50px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:180px;
object-fit:cover;
}

.card h3{
margin:15px 0 10px;
}

.card p{
padding:0 15px 20px;
font-size:14px;
}

/* GALLERY */

.gallery{
padding:80px 10%;
text-align:center;
}

.gallery-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* CTA */

.cta{
background:#111;
color:white;
text-align:center;
padding:70px 10%;
}

.cta h2{
margin-bottom:15px;
}

/* TESTIMONIAL */

.testimonials{
padding:80px 10%;
text-align:center;
background:#f7f7f7;
}

.testimonial-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.t-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* FAQ */

.faq{
padding:80px 10%;
}

.faq h2{
text-align:center;
margin-bottom:40px;
}

.faq-item{
margin-bottom:20px;
}

.faq-item h3{
font-size:18px;
margin-bottom:5px;
}

/* CONTACT */

.contact{
padding:80px 10%;
text-align:center;
background:#fff;
}

.contact iframe{
width:100%;
height:350px;
border:0;
margin-top:20px;
}

/* FLOAT BUTTONS */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
text-decoration:none;
z-index:1000;
}

.call{
position:fixed;
bottom:90px;
right:25px;
background:#e63946;
color:white;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:22px;
text-decoration:none;
}

/* FOOTER */

footer{
background:#000;
color:white;
text-align:center;
padding:30px;
}

footer a{
color:#e63946;
text-decoration:none;
}

/* MOBILE */

@media(max-width:768px){

header{
flex-direction:column;
gap:10px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.about{
grid-template-columns:1fr;
}

.hero h1{
font-size:32px;
}

.hero{
padding:20px;
}

}
    
    
    /* HAMBURGER */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* MOBILE MENU */

@media(max-width:768px){

.menu-toggle{
display:block;
}

nav{
position:absolute;
top:70px;
left:-100%;
width:100%;
background:white;
flex-direction:column;
text-align:center;
padding:20px 0;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
transition:0.4s;
}

nav a{
display:block;
margin:15px 0;
font-size:18px;
}

nav.active{
left:0;
}

.phone{
display:none;
}

}
    
    .service-btns{
display:flex;
gap:10px;
justify-content:center;
padding-bottom:20px;
}

.enquire-btn{
background:#25D366;
color:white;
padding:10px 15px;
border-radius:5px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.enquire-btn:hover{
background:#1ebe5d;
}

.detail-btn{
background:#e63946;
color:white;
padding:10px 15px;
border-radius:5px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.detail-btn:hover{
background:#c5303b;
}
   