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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0d0d0d;
    color:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9999;
    backdrop-filter:blur(14px);
    background:rgba(0,0,0,0.45);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
    color:#f4b400;
    font-size:26px;
    font-weight:700;
    z-index:10001;
}

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

.nav-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
    font-weight:500;
}

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

.call-btn{
    background:#f4b400;
    color:#000;
    padding:14px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

/* HAMBURGER */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:10001;
}

.hamburger span{
    width:30px;
    height:3px;
    background:#fff;
    border-radius:10px;
    transition:0.4s;
}

.hamburger.open span:nth-child(1){
    transform:rotate(45deg) translateY(12px);
}

.hamburger.open span:nth-child(2){
    opacity:0;
}

.hamburger.open span:nth-child(3){
    transform:rotate(-45deg) translateY(-12px);
}

/* HERO */

.hero{
    min-height:100vh;
    position:relative;
    background:url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=1920') center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:0 8%;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.7);
}

.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-left{
    max-width:650px;
}

.badge{
    display:inline-block;
    background:rgba(244,180,0,0.2);
    color:#f4b400;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:25px;
    border:1px solid rgba(244,180,0,0.3);
}

.hero-left h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-left p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:35px;
    font-size:18px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:nowrap;
    gap:20px;
    margin-bottom: 50px;
}
.booking-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:16px;
    border-radius:10px;
    background:#f4b400;
    color:#000;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}
.secondary-btn{
    background:#25D366;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(37,211,102,0.25);
}

.secondary-btn:hover{
    transform:translateY(-3px);
    background:#20c55a;
    box-shadow:0 14px 35px rgba(37,211,102,0.35);
}

.booking-btn:hover{
    transform:translateY(-2px);
    opacity:0.95;
}
.hero-buttons a{
    flex:1;
    text-align:center;
    padding:14px 18px;
    font-size:14px;
    margin-right: 10px;
}
.primary-btn{
    background:#f4b400;
    color:#000;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
}

.hero-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,0.05);
    padding:20px;
    border-radius:16px;
    backdrop-filter:blur(12px);
}

.stat-box h3{
    color:#f4b400;
    font-size:28px;
}

.booking-card{
    width:360px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    padding:35px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.1);
}

.booking-card h2{
    margin-bottom:25px;
}

.booking-card input{
    width:100%;
    padding:16px;
    margin-bottom:15px;
    border:none;
    border-radius:10px;
    background:rgba(255,255,255,0.08);
    color:#fff;
}

.booking-card button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#f4b400;
    color:#000;
    font-weight:700;
    cursor:pointer;
}

/* SECTIONS */

.services-section,
.vehicles-section,
.blog-section,
.contact-section{
    position:relative;
    padding:120px 8%;
    overflow:hidden;
}

/* Hizmetler */
.services-section{
    background:
    radial-gradient(circle at top left,
    rgba(244,180,0,0.08),
    transparent 35%),
    linear-gradient(
    180deg,
    #111111 0%,
    #151515 100%);
}

/* Araçlar */
.vehicles-section{
    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,0.04),
    transparent 30%),
    linear-gradient(
    180deg,
    #151515 0%,
    #101010 100%);
}

/* Blog */
.blog-section{
    background:
    radial-gradient(circle at center,
    rgba(244,180,0,0.05),
    transparent 40%),
    linear-gradient(
    180deg,
    #101010 0%,
    #161616 100%);
}

/* İletişim */
.contact-section{
    background:
    radial-gradient(circle at bottom,
    rgba(37,211,102,0.08),
    transparent 35%),
    linear-gradient(
    180deg,
    #161616 0%,
    #0d0d0d 100%);
}
.service-card,
.blog-card,
.vehicle-card,
.booking-card{
    border:1px solid rgba(255,255,255,0.05);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.25);
}
.service-card:hover,
.blog-card:hover,
.vehicle-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 20px rgba(244,180,0,0.08);
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:#f4b400;
    font-weight:600;
}


.section-header p{
    color:#aaa;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}
.section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    margin-bottom:18px;
    background:rgba(244,180,0,0.08);
    border:1px solid rgba(244,180,0,0.25);
    color:#f4b400;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    backdrop-filter:blur(12px);
    box-shadow:
        0 0 20px rgba(244,180,0,0.08),
        inset 0 0 10px rgba(255,255,255,0.03);
    transition:0.3s ease;
}
.section-title h2{
    margin-bottom:20px;
}
@media(max-width:768px){

    .section-title span{
        font-size:11px;
        padding:8px 18px;
        letter-spacing:1px;
    }


}
.section-title span:hover{
    transform:translateY(-2px);
    background:rgba(244,180,0,0.12);
    box-shadow:
        0 0 30px rgba(244,180,0,0.15),
        inset 0 0 12px rgba(255,255,255,0.05);
}


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

.service-card,
.blog-card,
.vehicle-card{
    background:#1a1a1a;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s;
}

.service-card,
.blog-card{
    padding:40px;
}

.service-card:hover,
.blog-card:hover,
.vehicle-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    font-size:42px;
    margin-bottom:20px;
}

.vehicle-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.vehicle-content{
    padding:25px;
}

.vehicle-content p{
    color:#aaa;
    margin-top:10px;
}

/* CONTACT */

.contact-section{
    text-align:center;
}

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

.contact-btn,
.whatsapp-btn{
    padding:18px 40px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.contact-btn{
    background:#f4b400;
    color:#000;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

/* MOBILE */

@media(max-width:992px){
    .navbar{
        padding:20px 5%;
    }
    .logo{
        font-size:20px;
    }
    

    .hamburger{
        display:flex !important;
    }
    
    .nav-buttons .call-btn{
    padding:10px 18px;
    font-size:14px;
}

    .nav-links{
    display:flex;
    flex-direction:column;
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    height:100vh;
    background:#111;
    padding:140px 40px;
    transition:0.5s;
    z-index:10000;
    gap:30px;
}

    .nav-links.active{
        right:0;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;
        padding-top:140px;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-stats{
        justify-content:center;
        gap: 15px
    }

    .booking-card{
        width:100%;
        max-width:420px;
    }

    

}

@media(max-width:405px){
    
    .logo{
        font-size: 16px;
    }
    .call-btn{
        padding: 6px 10px;
        font-size: 10px;
    }
    .stat-box{
        padding: 10px;
    }
    .stat-box h3{
        font-size: 20px;
    }
    .stat-box span{
    font-size: 12px;
    }
    
}
@media(max-width:430px){
    .contact-btn{
        padding: 10px 25px;
    }
    .stat-box{
        padding: 10px;
    }
    .stat-box h3{
        font-size: 20px;
    }
    .stat-box span{
        font-size: 12px;
    }
}

.price-box{
    margin:20px 0;
    padding:18px;
    border-radius:14px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.price-box p{
    margin:10px 0;
    color:#ccc;
    font-size:15px;
}

.price-box span{
    color:#f4b400;
    font-weight:700;
}
.calculate-btn{
    width:100%;
    padding:16px;
    margin-top:15px;
    margin-bottom:15px;
    border:none;
    border-radius:10px;
    background:#ffffff10;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.1);
}

.calculate-btn:hover{
    background:#f4b400;
    color:#000;
}
/* WHY US */

.why-us-section{
    padding:80px 5%;
    
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.why-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-5px);
}

.why-card h3{
    font-size:22px;
    margin-bottom:15px;
    color: #fafafa;
}

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


/* COUNTER */

.counter-section{
    padding:70px 5%;
    background:#111;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

.counter-box h3{
    color:#f4b400;
    font-size:40px;
    margin-bottom:10px;
}

.counter-box span{
    color:#fff;
    font-size:16px;
}


/* TESTIMONIAL */

.testimonial-section{
    padding:80px 5%;
    background:#fafafa;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#111;
}


/* CTA */

.cta-section{
    padding:90px 5%;
    background:#f4b400;
    text-align:center;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
    color:#111;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:35px;
    color:#222;
}

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


/* FAQ */

.faq-section{
    padding:80px 5%;
    background:#fff;
}

.faq-box{
    max-width:900px;
    margin:auto;
    margin-top:40px;
}

.faq-item{
    background:#f8f8f8;
    padding:25px;
    border-radius:16px;
    margin-bottom:20px;
}

.faq-item h3{
    margin-bottom:15px;
    font-size:20px;
    color:black;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}


/* RESPONSIVE */

@media(max-width:992px){

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

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

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

}


@media(max-width:768px){

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

    .counter-section{
        grid-template-columns:1fr;
    }

    .cta-section h2{
        font-size:32px;
    }

    .counter-box h3{
        font-size:34px;
    }

}
.footer{
    background:#111;
    color:#fff;
    padding:60px 20px;
    text-align:center;
    margin-top:80px;
    border-top:4px solid #f4b400;
}

.footer h2{
    font-size:32px;
    margin-bottom:20px;
    color:#f4b400;
    font-weight:700;
}

.footer p{
    font-size:16px;
    line-height:1.8;
    color:#ccc;
    margin-bottom:15px;
}

.footer a{
    color:#f4b400;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.footer a:hover{
    color:#fff;
}

@media(max-width:768px){

    .footer{
        padding:40px 15px;
    }

    .footer h2{
        font-size:26px;
    }

    .footer p{
        font-size:15px;
    }

}
.pwa-banner{
    position:fixed;
    top:-200px;
    left:50%;
    transform:translateX(-50%);
    width:95%;
    max-width:500px;
    background:#111;
    color:#fff;
    border-radius:18px;
    padding:16px;
    z-index:99999;
    transition:0.5s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.pwa-banner.show{
    top:20px;
}

.pwa-banner-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.pwa-text p{
    margin-top:5px;
    font-size:14px;
    opacity:0.8;
}

.pwa-buttons{
    display:flex;
    align-items:center;
    gap:10px;
}

#installBtn{
    background:#f4b400;
    color:#111;
    border:none;
    padding:10px 18px;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
}

#closeBtn{
    background:transparent;
    color:#fff;
    border:none;
    font-size:20px;
    cursor:pointer;
}
.page-hero{
padding:140px 20px 60px;
text-align:center;
background:#111;
color:#fff;
}

.services-grid,
.vehicles-grid,
.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
padding:40px 20px;
}

.service-card,
.vehicle-card,
.blog-card,
.contact-box{
background:#1b1b1b;
padding:25px;
border-radius:16px;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.vehicle-card img{
width:100%;
border-radius:12px;
margin-bottom:15px;
}