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

body{
font-family:'Montserrat',sans-serif;
background:#0a0f1a;
color:white;
line-height:1.6;
overflow-x:hidden;
}

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

/* HEADER */

header{
background:black;
border-bottom:2px solid #ffcc00;
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
flex-direction:column;
padding:20px 12px;
}

.logo-area{
display:flex;
align-items:center;
gap:14px;
}

.logo-img{
width:70px;
}

.logo-text{
font-size:34px;
font-weight:800;
color:#ffcc00;
white-space:nowrap;
}

nav{
display:flex;
gap:15px;
margin-top:6px;
}

nav a{
text-decoration:none;
color:white;
font-weight:600;
font-size:14px;
}

nav a:hover{
color:#ffcc00;
}

.call-btn{
margin-top:10px;
background:#ffcc00;
color:black;
padding:12px;
border-radius:6px;
text-decoration:none;
font-weight:700;
text-align:center;
}

/* HERO SLIDER */

.hero-slider{
position:relative;
width:100%;
height:500px;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1s;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(40%);
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
width:90%;
}

.hero-content h1{
font-size:42px;
color:#ffcc00;
}

.hero-content p{
margin:15px 0 25px;
font-size:18px;
}

.main-btn{
background:#ffcc00;
color:black;
padding:14px 28px;
text-decoration:none;
border-radius:6px;
font-weight:700;
}

/* BRANDS */

.brands{
padding:60px 0;
text-align:center;
}

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

.brand-grid img{
max-width:100%;
filter:brightness(0) invert(1);
}

/* PRICES */

.prices{
padding:60px 0;
text-align:center;
background:#05070f;
}

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

.price-card{
background:#121a2d;
padding:25px;
border-radius:10px;
}

.price-card h3{
color:#ffcc00;
}

.price{
font-size:28px;
margin:10px 0;
font-weight:700;
}

.price-card a{
background:#ffcc00;
color:black;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:10px;
font-weight:700;
}

/* SERVICES */

.section{
padding:60px 0;
text-align:center;
}

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

.card{
background:#121a2d;
padding:25px;
border-radius:10px;
}

.card h3{
color:#ffcc00;
}

/* CONTACT */

.map{
margin-top:30px;
border-radius:10px;
overflow:hidden;
}

iframe{
width:100%;
border:0;
}

/* FOOTER */

footer{
background:black;
padding:20px;
text-align:center;
border-top:2px solid #ffcc00;
}

/* MOBILE */

@media (max-width:768px){

nav{
display:none;
}

.logo-text{
font-size:28px;
}

.hero-content h1{
font-size:30px;
}

.hero-slider{
height:420px;
}

.brand-grid{
grid-template-columns:repeat(2,1fr);
}

.price-grid{
grid-template-columns:1fr;
}

.services{
grid-template-columns:1fr;
}

.contact-phone a{
color:#ffcc00;
font-size:28px;
font-weight:700;
text-decoration:none;
}

.contact-phone a:hover{
color:#ffd633;
}

}