/* ===========================
   GLOBAL
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#090909;

    color:#fff;

    overflow-x:hidden;

}

/* ===========================
   BACKGROUND
=========================== */

body::before{

    content:"";

    position:fixed;

    width:700px;

    height:700px;

    right:-250px;

    top:-150px;

    border-radius:50%;

    background:#00ff84;

    filter:blur(160px);

    opacity:.18;

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    width:500px;

    height:500px;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

    background:#00ff84;

    filter:blur(170px);

    opacity:.10;

    z-index:-1;

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    padding:18px 0;

    background:rgba(0,0,0,.15);

    backdrop-filter:blur(10px);

    transition:.4s;

}
.navbar.scrolled{

    padding:10px 0;

    background:rgba(0,0,0,.90);

    backdrop-filter:blur(20px);

    box-shadow:0 8px 25px rgba(0,0,0,.35);

}


.navbar-brand{

    color:#fff!important;

    font-size:30px;

}

.navbar-brand span{

    color:#00ff84;

}

.nav-link{

    color:#fff!important;

    margin-left:20px;

    transition:.3s;

}

.nav-link:hover{

    color:#00ff84!important;

}

.btn-success{

    background:#00d26a;

    border:none;

    padding:12px 28px;

    border-radius:50px;

}

.btn-success:hover{

    background:#00ff84;

    color:#111;

}

/* ===========================
   HERO
=========================== */

.hero{

    padding-top:130px;
    padding-bottom:70px;

}

.hero h1{

    font-size:75px;

    font-weight:800;

    line-height:1.1;

    margin-top:25px;

}

.hero h1 span{

    color:#00ff84;

}

.hero p{

    margin-top:25px;

    font-size:18px;

    color:#bdbdbd;

    line-height:1.9;

}

.badge-custom{

    display:inline-block;

    background:#00d26a;

    color:#111;

    padding:12px 25px;

    border-radius:50px;

    font-weight:700;

}

.price-box{

    margin-top:35px;

    padding:25px;

    background:#151515;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}

.price-box h2{

    color:#00ff84;

    font-size:45px;

    margin-bottom:10px;

}

.hero-button{

    margin-top:35px;

    display:flex;

    gap:20px;

}

.hero-bike{

    width:100%;

    max-width:620px;

    border-radius:20px;

    position:relative;

    z-index:2;

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

    transition:.5s;

    filter:drop-shadow(0 30px 60px rgba(0,255,120,.35));

}

.hero-bike:hover{

    transform:scale(1.03);

}
.hero .text-center{

    position:relative;

}

.hero .text-center::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#00ff84;

    border-radius:50%;

    filter:blur(180px);

    opacity:.18;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    z-index:1;

}

/* ===========================
   THUMBNAIL
=========================== */

/* ===========================
   GALLERY
=========================== */

.thumb-list{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:35px;

}

.thumb-list img{

    width:95px;

    height:75px;

    object-fit:cover;

    border-radius:15px;

    cursor:pointer;

    transition:.35s;

    border:3px solid transparent;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.thumb-list img:hover{

    transform:translateY(-8px) scale(1.08);

    border-color:#00ff84;

}

.thumb-list img.active{

    border-color:#00ff84;

    box-shadow:0 0 25px rgba(0,255,132,.45);

}
/* ===========================
   STAT
=========================== */

.stat-card{

    margin-top:25px;

    background:#151515;

    border-radius:15px;

    text-align:center;

    padding:20px;

    border:1px solid rgba(255,255,255,.06);

}

.stat-card h3{

    color:#00ff84;

    font-size:30px;

}

.stat-card small{

    color:#aaa;

}

/* ===========================
   FLOAT
=========================== */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}
/* ===========================
   LIGHTBOX
=========================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.93);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox img{

    max-width:85%;

    max-height:85%;

    border-radius:20px;

    box-shadow:0 0 60px rgba(0,255,120,.4);

    animation:zoom .35s;

}

@keyframes zoom{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

.close{

position:absolute;

top:25px;

right:40px;

font-size:60px;

cursor:pointer;

color:white;

}

.prev,

.next{

position:absolute;

top:50%;

transform:translateY(-50%);

font-size:65px;

cursor:pointer;

padding:20px;

color:white;

user-select:none;

}

.prev{

left:40px;

}

.next{

right:40px;

}

.close:hover,

.prev:hover,

.next:hover{

color:#00ff84;

}
/* ===========================
   SPECIFICATION
=========================== */

.spec-section{

    padding:80px 0;

}

.section-title{

    font-size:48px;

    font-weight:700;

    color:#fff;

    margin-bottom:10px;

}

.section-subtitle{

    color:#9b9b9b;

    font-size:18px;

}

.spec-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

    backdrop-filter:blur(12px);

}

.spec-card:hover{

    transform:translateY(-10px);

    border-color:#00ff84;

    box-shadow:0 15px 40px rgba(0,255,120,.18);

}

.spec-card i{

    font-size:55px;

    color:#00ff84;

    margin-bottom:25px;

}

.spec-card h4{

    font-size:24px;

    margin-bottom:15px;

}

.spec-card p{

    color:#bfbfbf;

    margin:0;

    font-size:17px;

}
/*=========================
      GALLERY PREMIUM
=========================*/

.gallery-section{

    padding:90px 0;

    background:#090909;

}

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:20px;

}

.gallery-item{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:24px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.3);

}

.gallery-item:hover{

    transform:scale(1.03);

    box-shadow:0 0 35px rgba(0,255,120,.35);

}

.large{

    grid-row:span 2;

    height:540px;

}
/* ===========================
   FOOTER
=========================== */

.footer{

    padding:80px 0 30px;

    background:#050505;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer h3{

    font-size:34px;

    color:white;

    margin-bottom:20px;

}

.footer h3 span{

    color:#00ff84;

}

.footer h4{

    margin-bottom:20px;

    color:white;

}

.footer p{

    color:#9d9d9d;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#9d9d9d;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#00ff84;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 30px;

}
/* ===========================
   FLOATING WHATSAPP
=========================== */

.floating-wa{

    position:fixed;

    right:30px;

    bottom:35px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#00d26a;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 0 30px rgba(0,255,132,.35);

    transition:.35s;

    z-index:9999;

}

.floating-wa:hover{

    transform:scale(1.12);

    color:white;

}
/* ==========================================
   RESPONSIVE TABLET
========================================== */

@media (max-width:992px){

.hero{

    padding-top:120px;
    padding-bottom:60px;

}

.hero h1{

    font-size:56px;

}

.hero-bike{

    margin-top:50px;
    max-width:500px;

}

.hero-button{

    flex-wrap:wrap;

}

.stats{

    justify-content:center;

}

.gallery-grid{

    grid-template-columns:1fr 1fr;

}

.large{

    grid-column:span 2;
    height:420px;

}

}


/* ==========================================
   RESPONSIVE MOBILE
========================================== */

@media (max-width:768px){

.navbar{

    padding:15px;

}

.navbar-brand{

    font-size:28px;

}

.hero{

    text-align:center;

    padding-top:110px;

}

.hero h1{

    font-size:42px;

    line-height:1.2;

}

.hero p{

    font-size:16px;

}

.hero-button{

    flex-direction:column;

    gap:15px;

}

.hero-button a{

    width:100%;

}

.price-box h2{

    font-size:34px;

}

.stat-card{

    margin-bottom:20px;

}

.hero-bike{

    display:block;

    margin:50px auto 0;

    width:100%;

    max-width:340px;

    object-fit:contain;

}
.hero .col-lg-6:last-child{

    display:flex;

    justify-content:center;

    align-items:center;

}
.hero{

    overflow:hidden;

}

.thumb-list{

    flex-wrap:wrap;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.large{

    grid-row:auto;

    height:260px;

}

.gallery-item{

    height:220px;

}

.spec-section{

    padding:70px 0;

}

.section-title{

    font-size:36px;

}

.footer{

    text-align:center;

}

.footer .col-lg-4{

    margin-bottom:40px;

}

.floating-wa{

    width:60px;

    height:60px;

    right:20px;

    bottom:35px;

}

}


/* ==========================================
   EXTRA SMALL PHONE
========================================== */

@media (max-width:480px){

.hero h1{

    font-size:34px;

}

.badge-custom{

    font-size:13px;

}

.price-box{

    padding:20px;

}

.price-box h2{

    font-size:28px;

}

.section-title{

    font-size:30px;

}

.gallery-item{

    height:180px;

}

}
.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

    filter:invert(1);

}
/*==========================
        LOADER
==========================*/

#loader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.loader-logo{

    font-size:48px;

    font-weight:700;

    color:white;

    margin-bottom:30px;

}

.loader-logo span{

    color:#00ff84;

}

.loader-line{

    width:220px;

    height:5px;

    background:#1b1b1b;

    border-radius:50px;

    overflow:hidden;

}

.loader-progress{

    width:0;

    height:100%;

    background:#00ff84;

    animation:loading 1.6s linear forwards;

}

@keyframes loading{

from{

width:0;

}

to{

width:100%;

}

}
/*==========================
    SCROLL PROGRESS
==========================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#00ff84;

    z-index:999999;

    transition:width .1s linear;

}
/*==========================
      BACK TO TOP
==========================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:110px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#00ff84;

    color:#000;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,255,120,.35);

    transition:.35s;

}

#backToTop:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,255,120,.45);

}
/*==========================
     CONTACT FORM
==========================*/

.contact-section{

    background:#0b0b0b;

    padding:100px 0;

}

.contact-card{

    background:#181818;

    padding:40px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}

.contact-card .form-control{

    background:#111;

    color:white;

    border:1px solid #333;

    padding:15px;

}

.contact-card .form-control:focus{

    background:#111;

    color:white;

    border-color:#00ff84;

    box-shadow:none;

}

.contact-card textarea{

    resize:none;

}