
/* ===================================
   MD CARS - PREMIUM STYLE
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#0b0b0b;
    color:#ffffff;
    line-height:1.6;
    overflow-x:hidden;
}

/* ===================================
   HEADER
=================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(0,0,0,0.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
    max-width:1400px;
    margin:auto;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:90px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

/* ===================================
   MOBILE MENU
=================================== */

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.menu-toggle span{
    width:30px;
    height:3px;
    background:#d4af37;
    transition:.3s;
}

/* ===================================
   HERO
=================================== */

.hero{
    position:relative;
    height:100vh;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(70%);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:90%;
    max-width:1000px;
}

.hero-subtitle{
    color:#d4af37;
    font-weight:bold;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero h1{
    font-size:5rem;
    line-height:1.1;
    margin:20px 0;
}

.hero p{
    font-size:1.3rem;
    color:#d6d6d6;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background:white;
    color:#000;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
    background:#f5cb52;
}

/* ===================================
   ABOUT
=================================== */

.about{
    max-width:1400px;
    margin:auto;
    padding:120px 5%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:20px;
}

.about h2{
    font-size:3rem;
    color:#d4af37;
    margin-bottom:10px;
}

.about h3{
    margin-bottom:25px;
}

.about p{
    margin-bottom:18px;
    color:#d2d2d2;
}

/* ===================================
   SERVICES
=================================== */

.services{
    padding:120px 5%;
    background:#111;
}

.services h2{
    text-align:center;
    font-size:3rem;
    margin-bottom:70px;
}

.service-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-card{
    background:#181818;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-card h3{
    color:#d4af37;
    padding:25px 25px 10px;
}

.service-card p{
    padding:0 25px 25px;
    color:#d3d3d3;
}

/* ===================================
   STATS
=================================== */

.stats{
    max-width:1400px;
    margin:auto;
    padding:100px 5%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#161616;
    text-align:center;
    padding:40px;
    border-radius:20px;
}

.stat-box h3{
    font-size:3rem;
    color:#d4af37;
}

/* ===================================
   CTA
=================================== */

.cta{
    text-align:center;
    padding:120px 5%;
    background:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.8)),
    url("bild1.png");
    background-size:cover;
    background-position:center;
}

.cta h2{
    font-size:3.5rem;
    max-width:900px;
    margin:auto;
    margin-bottom:25px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
    color:#d5d5d5;
}

/* ===================================
   GALLERY
=================================== */

.gallery{
    padding:120px 5%;
}

.gallery h2{
    text-align:center;
    font-size:3rem;
    margin-bottom:60px;
}

.gallery-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ===================================
   CONTACT
=================================== */

.contact{
    background:#111;
    padding:120px 5%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact h2{
    font-size:3rem;
    color:#d4af37;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:20px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    background:#1d1d1d;
    border:1px solid #333;
    color:#fff;
    padding:18px;
    border-radius:10px;
}

.contact-form button{
    border:none;
    background:#d4af37;
    color:#000;
    padding:18px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.contact-form button:hover{
    background:#f5cb52;
}

/* ===================================
   FOOTER
=================================== */

footer{
    text-align:center;
    padding:60px 20px;
    background:#090909;
}

footer img{
    height:80px;
    margin-bottom:20px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    color:#9d9d9d;
    margin-bottom:8px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .about,
    .contact{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:3.5rem;
    }
}

@media(max-width:768px){

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#111;
        padding:25px;
        text-align:center;
    }

    .nav-links.active{
        display:flex;
    }

    .hero h1{
        font-size:2.7rem;
    }

    .hero p{
        font-size:1rem;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .services h2,
    .gallery h2,
    .about h2,
    .contact h2{
        font-size:2.2rem;
    }

    .cta h2{
        font-size:2.3rem;
    }
}

.footer{
    background:#0d0d0d;
    color:#fff;
    padding:80px 0 20px;
    border-top:1px solid rgba(255,215,0,0.2);
}

.footer .container{
    width:min(1400px,90%);
    margin:auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
    margin-bottom:50px;
}

.footer-box h3{
    color:#d4af37;
    margin-bottom:20px;
    font-size:1.3rem;
}

.footer-box p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-links,
.opening-hours{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#d4af37;
    padding-left:5px;
}

.opening-hours li{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#bdbdbd;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    text-align:center;
    color:#888;
}

.yello{
    color: #d4af37;
}
.yellbtn{
    background: #d4af37;
}