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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
}

/* HEADER */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(0,0,0,.95);
    border-bottom:2px solid #ffd400;
}

.logo img{
    width:120px;
    height:auto;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#ffd400;
}

.language-btn{
    background:#ffd400;
    color:#000;
    padding:8px 15px;
    border-radius:25px;
}

/* HERO */

.hero{
    height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.8)),
        url("../images/hero-car.jpg");
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 8%;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:70px;
    color:#ffd400;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:35px;
}

/* BUTTON */

.btn{
    display:inline-block;
    background:#ffd400;
    color:#000;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

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

/* GENERAL */

section{
    padding:90px 8%;
}

.container{
    max-width:1300px;
    margin:auto;
}

h2{
    text-align:center;
    color:#ffd400;
    font-size:45px;
    margin-bottom:45px;
}

/* SERVICES */

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

.card{
    background:#151515;
    padding:35px;
    border-radius:20px;
    transition:.3s;
    border:1px solid #333;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#ffd400;
}

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

.card p{
    color:#ddd;
    line-height:1.7;
}

/* GALLERY */

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

.gallery-item{
    background:#151515;
    border-radius:18px;
    overflow:hidden;
    border:2px solid #222;
    transition:.3s;
}

.gallery-item:hover{
    transform:translateY(-8px);
    border-color:#ffd400;
}

.gallery-item img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.gallery-item h3{
    text-align:center;
    padding:18px;
    color:#ffd400;
}

/* CONTACT */

.contact-box{
    max-width:800px;
    margin:auto;
    background:#151515;
    padding:45px;
    border-radius:20px;
    border:2px solid #ffd400;
    box-shadow:0 0 25px rgba(255,212,0,.18);
}

.contact-box h3{
    text-align:center;
    color:#ffd400;
    font-size:32px;
    margin-bottom:20px;
}

.contact-box p{
    text-align:center;
    color:#ddd;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-row{
    display:flex;
    align-items:flex-start;
    gap:18px;
    font-size:18px;
}

.contact-row span{
    font-size:30px;
}

.contact-row strong{
    color:#ffd400;
}

.contact-row a{
    color:#fff;
    text-decoration:none;
}

.contact-row a:hover{
    color:#ffd400;
}

.contact-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* FOOTER */

footer{
    background:#000;
    padding:30px;
    text-align:center;
    border-top:2px solid #ffd400;
    color:#bbb;
}

/* MOBILE */

@media(max-width:900px){
    header{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero h1{
        font-size:45px;
    }

    .hero p{
        font-size:18px;
    }

    .contact-row{
        flex-direction:column;
    }
}