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

html{
    scroll-behavior:smooth;
}

body{
    background:black;
    color:white;
    font-family:'Orbitron', sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */

nav{
    position:fixed;
    top:0;
    width:100%;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(10px);
}

.logo-text{
    color:white;
    font-weight:700;
    letter-spacing:4px;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    position:relative;
    padding-bottom:6px;
    transition:0.3s;
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0%;
    height:2px;

    background:#facc15;

    transition:0.4s;

}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#facc15;
}

/* LOADER */

.loader{
    position:fixed;
    width:100%;
    height:100vh;
    background:black;
    z-index:99999;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    animation:loaderHide 3s forwards;
}

.loader h1{
    margin-top:30px;
    letter-spacing:10px;
}

.loader-light{
    width:300px;
    height:100px;
    background:linear-gradient(to right,
    transparent,
    white,
    transparent);

    filter:blur(40px);

    animation:lightMove 2s infinite;
}

/* HERO */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.75));

    z-index:1;
}

/* AUDI */

.car-area{
    position:absolute;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.car-image{
    width:1300px;
    opacity:0.55;
    filter:brightness(1.35);
    animation:carFloat 6s ease-in-out infinite;
}

/* FARLAR */

.light-beam{
    position:absolute;
    width:550px;
    height:220px;

    background:linear-gradient(to right,
    rgba(255,255,255,0.9),
    transparent);

    filter:blur(55px);

    opacity:0.6;

    animation:headlightPulse 2s infinite;
}

.left-beam{
    left:-50px;
    top:42%;
    transform:rotate(-5deg);
}

.right-beam{
    right:-50px;
    top:42%;
    transform:rotate(185deg);
}

/* MOUSE LIGHT */

.mouse-light{
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    filter:blur(80px);
    pointer-events:none;
    z-index:2;
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:3;
    text-align:center;
    padding:20px;
    margin-top:60px;
}

.hero-logo{

    width:170px;

    border-radius:20px;

    margin-bottom:25px;

    box-shadow:0 0 40px rgba(255,255,255,0.15);

    animation:logoFloat 4s ease-in-out infinite;

}

.top-text{
    color:#facc15;
    letter-spacing:8px;
    font-size:14px;
    margin-bottom:20px;
}

h1{
    font-size:90px;
    line-height:1;
    margin-bottom:30px;
}

.description{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#cfcfcf;
    margin-bottom:40px;
}

/* BUTTONS */

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

.yellow-btn{
    background:#facc15;
    color:black;
    border:none;
    padding:18px 40px;
    border-radius:14px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
    text-decoration:none;
}

.yellow-btn:hover{
    transform:scale(1.08);
}

.dark-btn{
    background:transparent;
    border:1px solid #555;
    color:white;
    padding:18px 40px;
    border-radius:14px;
    cursor:pointer;
    transition:0.3s;
    text-decoration:none;
}

.dark-btn:hover{
    background:#111;
}

/* SCROLL */

.scroll-text{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:#777;
    letter-spacing:6px;
    animation:bounce 2s infinite;
    z-index:5;
}

/* DUMAN */

.smoke{
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    filter:blur(60px);
    animation:smokeMove 8s infinite linear;
}

.smoke1{
    left:10%;
    bottom:-50px;
}

.smoke2{
    right:10%;
    bottom:-50px;
}

.smoke3{
    left:50%;
    bottom:-50px;
}

/* BÖLÜMLER */

.services,
.shop-section,
.gallery,
.stats,
.map-section{
    padding:130px 20px;
}

/* REVEAL */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* TITLES */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p{
    color:#facc15;
    letter-spacing:8px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:50px;
}

/* SERVICES */

.services-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:#0b0b0b;
    border:1px solid #222;
    padding:40px;
    border-radius:25px;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:white;
    box-shadow:0 0 40px rgba(255,255,255,0.08);
}

.service-card h3{
    margin-bottom:20px;
    color:#facc15;
}

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

/* SHOP */

.shop-image{
    width:70%;
    max-width:800px;
    display:block;
    margin:auto;
    border-radius:30px;
    object-fit: cover;
}

/* GALLERY */

.gallery-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.car-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.car-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.5s;
}

.car-card:hover img{
    transform:scale(1.08);
}

.card-text{
    position:absolute;
    top:20px;
    left:20px;
    background:red;
    padding:10px 20px;
    border-radius:30px;
}

.done{
    background:#facc15;
    color:black;
}

/* STATS */

.stats{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

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

.stat-box h2{
    font-size:70px;
    color:#facc15;
    margin-bottom:15px;
}

/* MAP */

iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:30px;
}

/* CONTACT */

.contact-info{
    margin-top:40px;
    text-align:center;
}

.contact-info h3{
    font-size:35px;
    margin-bottom:20px;
    color:#facc15;
}

.contact-info p{
    margin-bottom:12px;
    color:#ccc;
}

.contact-info a{
    color:#facc15;
    text-decoration:none;
}

.contact-info a:hover{
    text-decoration:underline;
}

/* WHATSAPP */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25d366;
    color:white;
    padding:18px 25px;
    border-radius:50px;
    text-decoration:none;
    z-index:999;
    font-weight:bold;
    box-shadow:0 0 35px rgba(37,211,102,0.45);
}

/* FOOTER */

footer{
    padding:100px 20px;
    text-align:center;
    border-top:1px solid #222;
}

footer h2{
    font-size:40px;
    margin-bottom:20px;
}

footer p{
    color:#666;
}

/* ANIMATIONS */

@keyframes logoFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes lightMove{

    0%{
        transform:translateX(-200px);
    }

    100%{
        transform:translateX(200px);
    }

}

@keyframes loaderHide{

    0%,90%{
        opacity:1;
    }

    100%{
        opacity:0;
        visibility:hidden;
    }

}

@keyframes headlightPulse{

    0%{
        opacity:0.15;
    }

    45%{
        opacity:0.5;
    }

    50%{
        opacity:0.05;
    }

    55%{
        opacity:0.5;
    }

    100%{
        opacity:0.2;
    }

}

@keyframes carFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes smokeMove{

    0%{
        transform:translateY(0) scale(1);
        opacity:0.3;
    }

    100%{
        transform:translateY(-400px) scale(1.8);
        opacity:0;
    }

}

@keyframes bounce{

    0%,100%{
        transform:translate(-50%,0);
    }

    50%{
        transform:translate(-50%,-10px);
    }

}

/* MOBILE */

@media(max-width:768px){

    nav{
        padding:20px;
    }

    .nav-links{
        display:none;
    }

    h1{
        font-size:50px;
    }

    .section-title h2{
        font-size:35px;
    }

    .car-image{
        width:850px;
    }

    .hero-logo{
        width:120px;
    }

}