/* =========================================================
   GLOBAL CSS
========================================================= */
:root{
    --primary-blue:#0077C8;
    --dark-blue:#003B73;
    --gold:#F5A623;
    --gold-dark:#D48806;
    --light-bg:#F4F9FF;
    --white:#ffffff;
    --text-dark:#082532;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--white);
    color:var(--text-dark);
    overflow-x:hidden;
}

a{
    text-decoration:none !important;
}

img{
    max-width:100%;
}

/* =========================================================
   HEADER
========================================================= */

.header-area{
    position:fixed;
    top:12px;
    left:0;
    width:100%;
    z-index:999;
}

.custom-navbar{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(16px);
    border-radius:26px;
    padding:18px 30px;
    border:1px solid rgba(0,119,200,0.08);
    box-shadow:0 10px 40px rgba(0,119,200,0.08);
}

/* LOGO */

.logo-text{
    font-size:34px;
    font-weight:700;
    color:var(--primary-blue)!important;
    letter-spacing:2px;
}

.logo-img{
    height:58px;
    width:auto;
}

/* NAVBAR */

.navbar-nav{
    gap:12px;
}

.nav-link{
    color:var(--text-dark)!important;
    font-size:15px;
    font-weight:500;
    padding:10px 14px!important;
    transition:0.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--primary-blue)!important;
}

/* TEST DRIVE BUTTON */

.test-drive-btn{
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:var(--white);
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
    box-shadow:0 10px 25px rgba(245,166,35,0.35);
}

.test-drive-btn:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,var(--gold-dark),var(--gold));
    color:var(--white);
}

/* MOBILE TOGGLER */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:140px;
    background:linear-gradient(
        135deg,
        #edf5ff 0%,
        #ffffff 50%,
        #f5fbff 100%
    );
}

.hero-content h1{
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
    color:var(--dark-blue);
}

.hero-content p{
    font-size:20px;
    color:var(--text-light);
    margin-bottom:35px;
    max-width:520px;
}
.hero-buttons .btn{
    padding:14px 32px;
    border-radius:50px;
    font-weight:500;
    margin-right:15px;
}

.hero-bike img{
    animation:floatBike 4s ease-in-out infinite;
}

@keyframes floatBike{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================================
   COMMON SECTION
========================================================= */

section{
    padding:20px 0;
}

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
}
.section-title h2,
.section-heading h2{
    color:var(--dark-blue);
}

.section-title p,
.section-heading p{
    color:var(--text-light);
}
/* =========================================================
   MODEL CARDS
========================================================= */

.model-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s;
    height:100%;
}

.model-card:hover{
    transform:translateY(-10px);
}

.model-card img{
    height:250px;
    object-fit:contain;
    margin-bottom:25px;
}

.model-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.model-card ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.model-card ul li{
    margin-bottom:12px;
    color:#666;
}

.model-card .btn{
    border-radius:50px;
    padding:12px;
    font-weight:500;
}
.model-card,
.feature-box,
.review-card,
.why-card{
    background:var(--white);
    border-radius:28px;
    padding:35px;
    box-shadow:0 12px 40px rgba(0,119,200,0.08);
    border:1px solid rgba(0,119,200,0.05);
    transition:0.35s;
}

.model-card:hover,
.feature-box:hover,
.review-card:hover,
.why-card:hover{
    transform:translateY(-10px);
}
/* =========================================================
   COLOR SECTION
========================================================= */

.color-section{
    background:#f7f7f7;
}

.color-options{
    margin-top:30px;
}

.color{
    width:45px;
    height:45px;
    border-radius:50%;
    display:inline-block;
    margin-right:15px;
    cursor:pointer;
    border:3px solid #fff;
    box-shadow:0 4px 10px rgba(0,0,0,0.12);
}

.black{
    background:#111;
}

.blue{
    background:#0066ff;
}

.red{
    background:#ff3b30;
}

.green{
    background:#00b96b;
}

/* =========================================================
   FEATURES
========================================================= */

.feature-box{
    background:#fff;
    padding:35px 25px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
}

.feature-box p{
    color:#666;
    margin:0;
}
/* =========================================================
   LIGHT PREMIUM FOOTER
========================================================= */

.footer-area{
    position:relative;

    background:
    radial-gradient(
        circle at top right,
        rgba(245,166,35,0.12),
        transparent 25%
    ),

    linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef6ff 45%,
        #ffffff 100%
    );

    padding-top:110px;

    overflow:hidden;

    border-top:1px solid rgba(0,119,200,0.08);
}

/* SOFT GLOW */

.footer-area::before{
    content:'';

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(90px);
}

/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo{
    display:inline-block;
    margin-bottom:24px;
}

.footer-logo-img{
    height:82px;
    width:auto;
    object-fit:contain;
}

/* =========================================================
   FOOTER TEXT
========================================================= */

.footer-text{
    color:#5f6f82;

    line-height:1.9;

    font-size:15px;

    max-width:340px;

    margin-top:8px;
}

/* =========================================================
   FOOTER TITLES
========================================================= */

.footer-widget .footer-title{
    font-size:20px;
    font-weight:700;

    margin-bottom:28px;

    color:var(--dark-blue);

    position:relative;
}

/* UNDERLINE */

.footer-widget .footer-title::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-10px;

    width:42px;
    height:3px;

    border-radius:10px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links li a{
    color:#5f6f82;

    font-size:15px;

    transition:0.35s;

    position:relative;
}

.footer-links li a:hover{
    color:var(--primary-blue);

    padding-left:8px;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social{
    margin-top:30px;

    display:flex;
    gap:14px;
}

.footer-social a{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ffffff;

    color:var(--dark-blue);

    font-size:16px;

    transition:0.35s;

    border:1px solid rgba(0,119,200,0.08);

    box-shadow:0 10px 24px rgba(0,119,200,0.08);
}

.footer-social a:hover{
    background:linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );

    color:#fff;

    transform:translateY(-5px);
}

/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info p{
    color:#5f6f82;

    font-size:15px;

    margin-bottom:18px;

    line-height:1.8;

    display:flex;
    align-items:flex-start;
    gap:12px;
}
.contact-info p a {
    color: #666;          /* Same color as your normal text */
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info i{
    color:var(--gold);

    margin-top:4px;

    font-size:15px;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom{
    margin-top:80px;

    padding:28px 0;

    border-top:1px solid rgba(0,119,200,0.08);

    text-align:center;

    position:relative;
    z-index:2;
}

.footer-bottom p{
    color:#6f7f92;

    font-size:14px;

    margin:0;

    letter-spacing:0.5px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .footer-area{
        padding-top:80px;
    }

    .footer-widget{
        margin-bottom:15px;
    }

}

@media(max-width:767px){

    .footer-area{
        padding-top:70px;
    }

    .footer-logo-img{
        height:68px;
    }

    .footer-widget .footer-title{
        font-size:18px;
    }

    .footer-bottom{
        margin-top:50px;
    }

}
/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .custom-navbar{
        padding:18px;
    }

    .navbar-collapse{
        margin-top:20px;
    }

    .navbar-nav{
        gap:0;
    }

    .nav-link{
        padding:12px 0 !important;
    }

    .test-drive-btn{
        margin-top:20px;
        display:inline-block;
    }

    .hero-content{
        text-align:center;
        margin-bottom:50px;
    }

    .hero-content h1{
        font-size:52px;
    }

}

@media(max-width:767px){

    .hero-content h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:34px;
    }

    .footer-area{
        padding-top:70px;
    }

    .footer-logo{
        font-size:32px;
    }

}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section{
    padding:30px 0;
}

.cta-wrapper{
    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.92) 25%,
            rgba(0,0,0,0.55) 55%,
            rgba(0,0,0,0.75) 100%
        ),
        url('../images/ev-bike-cta.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:40px;
    padding:80px;
    overflow:hidden;
    position:relative;
}

.cta-wrapper::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
}
.cta-wrapper::after{
    content:'';
    position:absolute;
    bottom:-140px;
    left:-140px;
    width:320px;
    height:320px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
}
.cta-content{
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    background:rgba(255,255,255,0.08);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:25px;
}

.cta-content h2{
    font-size:58px;
    font-weight:700;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.cta-content p{
    color:#b5b5b5;
    font-size:18px;
    line-height:1.8;
    max-width:520px;
}

.cta-buttons{
    display:flex;
    flex-direction:column;
    gap:18px;
    position:relative;
    z-index:2;
}

.cta-btn{
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
    text-decoration:none;
}

.dark-btn{
    background:#fff;
    color:#111;
}

.dark-btn:hover{
    background:#eaeaea;
    color:#111;
}

.light-btn{
    background:rgba(255, 255, 255, 0.08);
    color:#fff;
    border:1px solid rgba(255,255,255,0.08);
}

.light-btn:hover{
    background:#fff;
    color:#111;
}

/* RESPONSIVE */

@media(max-width:991px){

    .cta-wrapper{
        padding:60px 40px;
    }

    .cta-content{
        margin-bottom:40px;
    }

    .cta-content h2{
        font-size:42px;
    }

}

@media(max-width:767px){

    .cta-wrapper{
        padding:40px 25px;
        border-radius:25px;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:16px;
    }

}
/* =========================================================
   PREMIUM FAQ SECTION
========================================================= */

.faq-section{
    padding:30px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );

    position:relative;

    overflow:hidden;
}

/* SOFT GLOW */

.faq-section::before{
    content:'';

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(90px);
}

/* WRAPPER */

.faq-wrapper{
    max-width:950px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================================
   ACCORDION ITEM
========================================================= */

.accordion-item{
    border:none !important;

    background:rgba(255,255,255,0.72) !important;

    backdrop-filter:blur(14px);

    border-radius:26px !important;

    overflow:hidden;

    margin-bottom:22px;

    box-shadow:
    0 12px 35px rgba(0,119,200,0.06);

    border:1px solid rgba(0,119,200,0.06) !important;

    transition:0.35s;
}

/* HOVER */

.accordion-item:hover{
    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(0,119,200,0.10);
}

/* =========================================================
   ACCORDION BUTTON
========================================================= */

.accordion-button{
    background:transparent !important;

    color:var(--dark-blue) !important;

    font-size:19px;

    font-weight:600;

    padding:30px 35px;

    border:none !important;

    box-shadow:none !important;

    border-radius:26px !important;

    transition:0.3s;
}

/* ACTIVE */

.accordion-button:not(.collapsed){
    background:transparent !important;

    color:var(--primary-blue) !important;
}

/* =========================================================
   CUSTOM ICON
========================================================= */

.accordion-button::after{
    background-image:none !important;

    content:'+';

    width:52px;
    height:52px;

    border-radius:18px;

    background:#eef6ff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:300;

    color:var(--primary-blue);

    transition:0.35s;

    box-shadow:0 10px 25px rgba(0,119,200,0.08);
}

/* ACTIVE ICON */

.accordion-button:not(.collapsed)::after{
    content:'−';

    background:linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );

    color:#54c5df;
}

/* =========================================================
   BODY
========================================================= */

.accordion-body{
    padding:0 35px 35px;

    font-size:16px;

    line-height:1.9;

    color:#5f6f82;

    background:transparent;
}

/* REMOVE FOCUS */

.accordion-button:focus{
    box-shadow:none !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:767px){

    .faq-section{
        padding:80px 0;
    }

    .accordion-button{
        font-size:16px;
        padding:24px;
    }

    .accordion-button::after{
        width:42px;
        height:42px;
        font-size:22px;
    }

    .accordion-body{
        padding:0 24px 24px;
        font-size:15px;
    }

}
/* =========================================================
   PREMIUM SUSTAINABILITY SECTION
========================================================= */

.sustainability-section{
    padding:30px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );

    overflow:hidden;

    position:relative;
}

/* TOP GLOW */

.sustainability-section::before{
    content:'';

    position:absolute;

    top:-180px;
    left:-180px;

    width:420px;
    height:420px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(90px);
}

/* =========================================================
   BADGE
========================================================= */

.sustain-badge{
    display:inline-block;

    padding:12px 22px;

    background:rgba(0,119,200,0.08);

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    margin-bottom:22px;

    color:var(--primary-blue);

    border:1px solid rgba(0,119,200,0.08);
}

/* =========================================================
   WRAPPER
========================================================= */

.sustain-wrapper{
    margin-top:80px;
    position:relative;
    z-index:2;
}

/* =========================================================
   FEATURE
========================================================= */

.sustain-feature{
    display:flex;
    align-items:flex-start;
    gap:25px;

    margin-bottom:60px;

    padding:28px;

    border-radius:30px;

    background:rgba(255,255,255,0.72);

    backdrop-filter:blur(14px);

    border:1px solid rgba(0,119,200,0.06);

    box-shadow:
    0 15px 40px rgba(0,119,200,0.06);

    transition:0.35s;
}

/* HOVER */

.sustain-feature:hover{
    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,119,200,0.10);
}

/* RIGHT */

.sustain-feature.right{
    justify-content:flex-end;
    text-align:right;
}

/* =========================================================
   ICON BOX
========================================================= */

.icon-box{
    width:82px;
    height:82px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    flex-shrink:0;

    transition:0.35s;
}

/* GOLD */

.icon-box.green{
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );

    color:#fff;

    box-shadow:
    0 15px 35px rgba(245,166,35,0.28);
}

/* BLUE */

.icon-box.dark{
    background:linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );

    color:#fff;

    box-shadow:
    0 15px 35px rgba(0,119,200,0.25);
}

/* =========================================================
   FEATURE CONTENT
========================================================= */

.feature-content span{
    display:block;

    font-size:34px;

    color:rgba(0,119,200,0.18);

    font-weight:700;

    margin-bottom:8px;
}

.feature-content h4{
    font-size:32px;

    font-weight:700;

    margin-bottom:14px;

    color:var(--dark-blue);
}

.feature-content p{
    font-size:18px;

    line-height:1.9;

    color:#5f6f82;

    margin:0;
}

/* =========================================================
   CENTER IMAGE
========================================================= */

.sustain-center{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* GLOW */

.circle-glow{
    position:absolute;

    width:420px;
    height:420px;

    background:
    radial-gradient(
        circle,
        rgba(0,119,200,0.22),
        rgba(245,166,35,0.16)
    );

    border-radius:50%;

    filter:blur(120px);

    opacity:0.85;
}

/* BIKE */

.sustain-center img{
    position:relative;

    z-index:2;

    width:450px;

    max-width:none;

    transform:scale(1.22);

    animation:floatBike 4s ease-in-out infinite;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .sustain-center{
        margin:70px 0;
    }

    .sustain-feature,
    .sustain-feature.right{
        text-align:left;
        justify-content:flex-start;
    }

}

@media(max-width:767px){

    .sustainability-section{
        padding:30px 0;
    }

    .feature-content h4{
        font-size:24px;
    }

    .feature-content p{
        font-size:15px;
    }

    .icon-box{
        width:68px;
        height:68px;

        font-size:24px;
    }

    .sustain-feature{
        padding:22px;
    }

    .sustain-center img{
        width:300px;
    }

}
/* =========================================================
   PREMIUM OFFER SECTION
========================================================= */

.offer-section{
    padding:30px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );

    overflow:hidden;
}

/* =========================================================
   WRAPPER
========================================================= */

.offer-wrapper{
    position:relative;

    min-height:830px;

    border-radius:42px;

    overflow:hidden;

    padding:90px 80px;

    display:flex;
    align-items:flex-start;

    background:#ffffff;

    border:1px solid rgba(0,119,200,0.08);

    box-shadow:
    0 20px 60px rgba(0,119,200,0.08);

    backdrop-filter:blur(18px);
}

/* =========================================================
   FULL BACKGROUND IMAGE
========================================================= */

.offer-bike{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    z-index:1;
}

.offer-bike img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;
}

/* =========================================================
   PREMIUM OVERLAY
========================================================= */

.offer-wrapper::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(255,255,255,0.98) 10%,
        rgba(255,255,255,0.95) 28%,
        rgba(255,255,255,0.82) 45%,
        rgba(255,255,255,0.28) 68%,
        rgba(255,255,255,0.04) 100%
    );

    z-index:2;
}

/* BLUE GLOW */

.offer-wrapper::after{
    content:'';

    position:absolute;

    top:-160px;
    right:-160px;

    width:420px;
    height:420px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(90px);

    z-index:2;
}

/* =========================================================
   CONTENT
========================================================= */

.offer-content{
    width:38%;

    position:relative;
    z-index:3;
}

.offer-content h2{
    font-size:48px;

    line-height:1.02;

    font-weight:800;

    margin-bottom:50px;

    letter-spacing:-3px;

    background:linear-gradient(
        135deg,
        var(--dark-blue),
        var(--primary-blue)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================================================
   FORM
========================================================= */

.offer-form{
    max-width:470px;
}

/* FORM GROUP */

.form-group{
    position:relative;
    margin-bottom:18px;
}

/* INPUT */

.form-group input{
    width:100%;

    height:74px;

    border:1px solid rgba(0,119,200,0.08);

    border-radius:20px;

    background:rgba(255,255,255,0.82);

    backdrop-filter:blur(14px);

    padding:0 24px 0 70px;

    font-size:18px;

    color:var(--dark-blue);

    outline:none;

    transition:0.35s;

    box-shadow:
    0 10px 25px rgba(0,119,200,0.04);
}

/* FOCUS */

.form-group input:focus{
    border-color:var(--primary-blue);

    box-shadow:
    0 15px 35px rgba(0,119,200,0.12);
}

.form-group input::placeholder{
    color:#8fa0b2;
}

/* ICONS */

.form-group i{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    color:var(--primary-blue);

    font-size:20px;
}

.form-group .fa-user{
    left:24px;
}

.left-icon{
    left:24px;
}

.right-icon{
    right:24px;
}
.form-group select,
.custom-select {
    width: 100%;
    height: 74px;
    border: 1px solid rgba(0,119,200,0.08);
    border-radius: 20px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    padding: 0 55px 0 24px;
    font-size: 18px;
    color: var(--dark-blue);
    outline: none;
    box-shadow: 0 10px 25px rgba(0,119,200,0.04);
    transition: .35s;

    /* Remove default browser styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
}

/* Focus */
.form-group select:focus,
.custom-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0,119,200,0.12);
}

/* Placeholder color */
.custom-select option:first-child {
    color: #8fa0b2;
}

/* Custom dropdown arrow */
.form-group {
    position: relative;
}


/* =========================================================
   PHONE GROUP
========================================================= */

.phone-group{
    display:flex;
    align-items:center;

    border:1px solid rgba(0,119,200,0.08);

    border-radius:20px;

    background:rgba(255,255,255,0.82);

    backdrop-filter:blur(14px);

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,119,200,0.04);
}

.phone-group span{
    width:90px;
    height:74px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#6e7f92;

    font-size:18px;

    border-right:1px solid rgba(0,119,200,0.08);
}

.phone-group input{
    border:none;
    background:transparent;
    padding-left:24px;
    box-shadow:none !important;
}

/* =========================================================
   MODEL
========================================================= */

.model-select{
    margin-top:30px;
}

.model-select p{
    font-size:20px;

    font-weight:600;

    color:var(--dark-blue);

    margin-bottom:22px;
}

/* RADIO GROUP */

.radio-group{
    display:flex;
    align-items:center;
    gap:42px;
}

.radio-group label{
    display:flex;
    align-items:center;
    gap:12px;

    cursor:pointer;
}

.radio-group input{
    width:20px;
    height:20px;

    accent-color:var(--gold);
}

.radio-group span{
    font-size:18px;

    color:#506174;
}

/* =========================================================
   BUTTON
========================================================= */

.offer-btn{
    width:100%;

    height:74px;

    border:none;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );

    color:#fff;

    font-size:20px;
    font-weight:700;

    margin-top:42px;

    transition:0.35s;

    box-shadow:
    0 15px 35px rgba(245,166,35,0.28);
}

.offer-btn:hover{
    transform:translateY(-4px);

    background:linear-gradient(
        135deg,
        var(--gold-dark),
        var(--gold)
    );
}

/* =========================================================
   NOTE
========================================================= */

.offer-note{
    font-size:14px;

    line-height:1.9;

    color:#708090;

    margin-top:28px;

    max-width:430px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px){

    .offer-content{
        width:46%;
    }

    .offer-content h2{
        font-size:44px;
    }

}

@media(max-width:991px){

    .offer-wrapper{
        padding:60px 35px;

        min-height:auto;
    }

    .offer-content{
        width:100%;
    }

    .offer-content h2{
        font-size:44px;
    }

    .offer-wrapper::before{
        background:
        rgba(255,255,255,0.92);
    }

}

@media(max-width:767px){

    .offer-section{
        padding:30px 0;
    }

    .offer-wrapper{
        padding:40px 24px;

        border-radius:28px;
    }

    .offer-content h2{
        font-size:36px;

        letter-spacing:-1px;
    }

    .form-group input,
    .phone-group span{
        height:62px;

        font-size:16px;
    }

    .offer-btn{
        height:62px;

        font-size:18px;
    }

    .radio-group{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

}

/* =========================================================
   INFLUENCER CARD
========================================================= */

.influencer-card{
    position:relative;

    border-radius:30px;

    overflow:hidden;

    min-height:280px;

    border:1px solid rgba(0,119,200,0.06);

    box-shadow:
    0 15px 40px rgba(0,119,200,0.08);

    transition:0.35s;
}

.influencer-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 24px 55px rgba(0,119,200,0.12);
}

.influencer-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;
}

.influencer-card:hover img{
    transform:scale(1.06);
}

/* CONTENT */

.influencer-content{
    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,27,56,0.82),
        rgba(0,59,115,0.10)
    );

    padding:30px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.influencer-content span{
    color:rgba(255,255,255,0.82);

    font-size:13px;

    letter-spacing:2px;
}

.influencer-content h3{
    color:#fff;

    font-size:30px;

    margin-top:12px;

    line-height:1.35;

    font-weight:700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-video-card{
        min-height:500px;
    }

    .section-heading h2{
        font-size:48px;
    }

}

@media(max-width:767px){

    .testimonial-section{
        padding:20px 0;
    }

    .section-heading h2{
        font-size:36px;

        letter-spacing:-1px;
    }

    .video-content h3,
    .influencer-content h3{
        font-size:26px;
    }

    .play-btn{
        width:68px;
        height:68px;

        font-size:18px;
    }

    .review-card{
        padding:26px;
    }

}
/* =========================================================
   PREMIUM VIDEO SHOWCASE
========================================================= */

.video-showcase-section{
    padding:30px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );

    position:relative;

    overflow:hidden;
}

/* SOFT GLOW */

.video-showcase-section::before{
    content:'';

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(100px);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.video-showcase-section .section-heading{
    position:relative;
    z-index:2;
}

.video-showcase-section .section-heading h2{
    color:var(--dark-blue);
}

.video-showcase-section .section-heading p{
    color:#5f6f82;
}

/* BADGE */

.dark-badge{
    background:rgba(0,119,200,0.08);

    color:var(--primary-blue);

    border:1px solid rgba(0,119,200,0.08);
}

/* =========================================================
   GRID
========================================================= */

.video-showcase-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    position:relative;
    z-index:2;
}

/* =========================================================
   VIDEO ITEM
========================================================= */

.video-item{
    position:relative;

    border-radius:34px;

    overflow:hidden;

    min-height:500px;

    background:#fff;

    border:1px solid rgba(0,119,200,0.06);

    box-shadow:
    0 20px 45px rgba(0,119,200,0.08);

    transition:0.4s;
}

/* HOVER */

.video-item:hover{
    transform:translateY(-8px);

    box-shadow:
    0 28px 60px rgba(0,119,200,0.14);
}

/* IMAGE */

.video-item img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;
}

.video-item:hover img{
    transform:scale(1.05);
}

/* =========================================================
   OVERLAY
========================================================= */

.video-item-overlay{
    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,27,56,0.72),
        rgba(0,59,115,0.10),
        rgba(255,255,255,0.02)
    );

    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

/* =========================================================
   PLAY BUTTON
========================================================= */

.video-item-overlay .play-btn{
    position:absolute;

    top:35px;
    left:35px;

    width:78px;
    height:78px;

    border-radius:50%;

    background:rgba(255,255,255,0.18);

    backdrop-filter:blur(12px);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:22px;

    border:1px solid rgba(255,255,255,0.18);

    transition:0.35s;
}

/* HOVER */

.video-item-overlay .play-btn:hover{
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );

    color:#fff;

    transform:scale(1.08);
}

/* =========================================================
   TITLE
========================================================= */

.video-item-overlay h3{
    color:#fff;

    font-size:32px;

    line-height:1.35;

    font-weight:700;

    max-width:280px;

    margin:0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .video-showcase-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:48px;
    }

}

@media(max-width:767px){

    .video-showcase-section{
        padding:80px 0;
    }

    .section-heading h2{
        font-size:36px;
    }

    .video-item{
        min-height:420px;
    }

    .video-item-overlay{
        padding:24px;
    }

    .video-item-overlay .play-btn{
        width:62px;
        height:62px;

        font-size:18px;

        top:24px;
        left:24px;
    }

    .video-item-overlay h3{
        font-size:24px;
    }

}
/* =========================================================
   VIDEO MODAL
========================================================= */

.video-modal .modal-dialog{
    max-width:1100px;
}

.video-modal .modal-content{
    background:#000;

    border:none;

    border-radius:28px;

    overflow:hidden;

    position:relative;
}

/* CLOSE BUTTON */

.video-close-btn{
    position:absolute;

    top:18px;
    right:18px;

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.15);

    backdrop-filter:blur(10px);

    color:#fff;

    z-index:10;

    font-size:18px;

    transition:0.3s;
}

.video-close-btn:hover{
    background:var(--gold);

    color:#fff;
}

/* IFRAME */

.video-modal iframe{
    width:100%;
    height:100%;

    border:none;
}

/* RESPONSIVE */

@media(max-width:767px){

    .video-modal .modal-dialog{
        margin:14px;
    }

    .video-close-btn{
        width:42px;
        height:42px;

        font-size:16px;
    }

}
/* =========================================================
   PREMIUM WHY CHOOSE SECTION
========================================================= */

.why-choose-section{
    padding:30px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );

    position:relative;

    overflow:hidden;
}

/* GLOW */

.why-choose-section::before{
    content:'';

    position:absolute;

    top:-220px;
    right:-220px;

    width:500px;
    height:500px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(120px);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading{
    margin-bottom:75px;

    position:relative;
    z-index:2;
}

/* BADGE */

.section-badge{
    display:inline-block;

    padding:12px 22px;

    background:rgba(0,119,200,0.08);

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

        color:#1e3a8a;

    border:1px solid rgba(0,119,200,0.08);
}

/* TITLE */

.section-heading h2{
    font-size:64px;

    font-weight:800;

    margin-bottom:18px;

    letter-spacing:-3px;

    background:linear-gradient(
        135deg,
        var(--dark-blue),
        var(--primary-blue)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */

.section-heading p{
    font-size:18px;

    color:#5f6f82;

    line-height:1.9;
}

/* =========================================================
   GRID
========================================================= */

.why-choose-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;
    z-index:2;
}

/* =========================================================
   CARD
========================================================= */

.why-card{
    background:rgba(255,255,255,0.78);

    backdrop-filter:blur(14px);

    border-radius:32px;

    padding:38px;

    transition:0.4s;

    border:1px solid rgba(0,119,200,0.06);

    box-shadow:
    0 15px 40px rgba(0,119,200,0.06);

    position:relative;

    overflow:hidden;
}

/* TOP GLOW */

.why-card::before{
    content:'';

    position:absolute;

    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    background:rgba(0,119,200,0.06);

    border-radius:50%;

    filter:blur(50px);
}

/* HOVER */

.why-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 24px 55px rgba(0,119,200,0.12);
}

/* DARK CARD */

.why-card.dark{
    background:
    linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );

    color:#fff;
}

/* =========================================================
   ICON
========================================================= */

.why-icon{
    width:86px;
    height:86px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    margin-bottom:30px;

    position:relative;

    z-index:2;

    transition:0.35s;

    background:
    linear-gradient(
        135deg,
        rgba(0,119,200,0.10),
        rgba(0,59,115,0.10)
    );

    color:var(--primary-blue);
}

/* DARK CARD ICON */

.why-card.dark .why-icon{
    background:rgba(255,255,255,0.12);

    color:var(--gold);

    backdrop-filter:blur(12px);
}

/* HOVER */

.why-card:hover .why-icon{
    transform:scale(1.08);
}

/* =========================================================
   TITLE
========================================================= */

.why-card h3{
    font-size:28px;

    line-height:1.3;

    margin-bottom:16px;

    font-weight:700;

    color:var(--dark-blue);

    position:relative;
    z-index:2;
}

/* DARK CARD TITLE */

.why-card.dark h3{
    color:#fff;
}

/* =========================================================
   TEXT
========================================================= */

.why-card p{
    font-size:17px;

    line-height:1.9;

    color:#5f6f82;

    position:relative;
    z-index:2;

    margin:0;
}

/* DARK CARD TEXT */

.why-card.dark p{
    color:rgba(255,255,255,0.78);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px){

    .why-choose-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .section-heading h2{
        font-size:48px;
    }

}

@media(max-width:767px){

    .why-choose-section{
        padding:80px 0;
    }

    .why-choose-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:36px;

        letter-spacing:-1px;
    }

    .section-heading p{
        font-size:16px;
    }

    .why-card{
        padding:28px;
    }

    .why-icon{
        width:72px;
        height:72px;

        font-size:26px;
    }

    .why-card h3{
        font-size:24px;
    }

    .why-card p{
        font-size:15px;
    }

}
/* =========================================================
   PREMIUM PERFORMANCE SECTION
========================================================= */

.performance-section{
    padding:30px 0;

    background:
    linear-gradient(
        180deg,
        #f7fbff 0%,
        #ffffff 100%
    );

    overflow:hidden;

    position:relative;
}

/* GLOW */

.performance-section::before{
    content:'';

    position:absolute;

    top:-220px;
    right:-220px;

    width:500px;
    height:500px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(120px);
}

/* =========================================================
   TOP
========================================================= */

.performance-top{
    display:flex;
    justify-content:space-between;

    gap:70px;

    margin-bottom:90px;

    position:relative;
    z-index:2;
}

/* BADGE */

.performance-badge{
    display:inline-block;

    padding:12px 22px;

    background:rgba(0,119,200,0.08);

    border-radius:50px;

    color:var(--primary-blue);

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    margin-bottom:24px;

    border:1px solid rgba(0,119,200,0.08);
}

/* TITLE */

.performance-top h2{
    font-size:72px;

    line-height:1.02;

    font-weight:800;

    letter-spacing:-4px;

    background:linear-gradient(
        135deg,
        var(--dark-blue),
        var(--primary-blue)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */

.performance-top p{
    max-width:520px;

    font-size:20px;

    line-height:1.9;

    color:#5f6f82;
}

/* =========================================================
   GRID
========================================================= */

.performance-grid{
    display:grid;

    grid-template-columns:1fr 1.2fr 1fr;

    align-items:center;

    gap:40px;

    position:relative;
    z-index:2;
}

/* =========================================================
   GLASS CARD
========================================================= */

.speed-card,
.stat-box,
.power-card,
.mode-card,
.battery-card{
    background:rgba(255,255,255,0.78);

    backdrop-filter:blur(14px);

    border-radius:30px;

    border:1px solid rgba(0,119,200,0.06);

    box-shadow:
    0 15px 40px rgba(0,119,200,0.06);

    transition:0.35s;
}

/* HOVER */

.speed-card:hover,
.stat-box:hover,
.power-card:hover,
.mode-card:hover,
.battery-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 24px 50px rgba(0,119,200,0.10);
}

/* =========================================================
   LEFT
========================================================= */

.speed-card{
    padding:45px;
    text-align:center;
    margin-bottom:30px;
}

/* SPEED CIRCLE */

.speed-circle{
    width:220px;
    height:220px;

    border-radius:50%;

    margin:auto;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );

    box-shadow:
    0 20px 50px rgba(0,119,200,0.25);

    position:relative;
}

/* OUTER RING */

.speed-circle::before{
    content:'';

    position:absolute;

    inset:-12px;

    border-radius:50%;

    border:3px solid rgba(245,166,35,0.28);
}

/* TEXT */

.speed-circle span{
    font-size:64px;
    font-weight:800;

    color:#fff;

    line-height:1;
}

.speed-circle small{
    color:rgba(255,255,255,0.78);

    font-size:22px;

    margin-top:6px;
}

.speed-card h3{
    color:var(--dark-blue);

    margin-top:34px;

    font-size:30px;

    font-weight:700;
}

/* =========================================================
   STATS
========================================================= */

.performance-stats{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.stat-box{
    padding:30px;
}

.stat-box h4{
    color:var(--gold-dark);

    font-size:38px;

    font-weight:700;

    margin-bottom:12px;
}

.stat-box span{
    color:#5f6f82;

    font-size:16px;

    line-height:1.7;
}

/* =========================================================
   CENTER BIKE
========================================================= */

.performance-bike{
    text-align:center;

    position:relative;
}

/* GLOW */

.performance-bike::before{
    content:'';

    position:absolute;

    width:480px;
    height:480px;

    background:
    radial-gradient(
        circle,
        rgba(0,119,200,0.18),
        rgba(245,166,35,0.12)
    );

    border-radius:50%;

    filter:blur(100px);

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}

/* BIKE */

.performance-bike img{
    position:relative;
    z-index:2;

   width:500px;
 height:500px;
    animation:floatBike 4s ease-in-out infinite;
}

/* =========================================================
   RIGHT
========================================================= */

.power-card,
.mode-card,
.battery-card{
    padding:35px;

    margin-bottom:25px;
}

/* POWER */

.power-card h3{
    font-size:72px;

    font-weight:800;

    margin-bottom:10px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.power-card span{
    color:#5f6f82;

    font-size:18px;
}

/* =========================================================
   MODES
========================================================= */

.mode-card h4,
.battery-card h4{
    color:var(--dark-blue);

    margin-bottom:22px;

    font-size:26px;

    font-weight:700;
}

.mode-list{
    display:flex;

    gap:14px;

    flex-wrap:wrap;
}

.mode-list span{
    padding:12px 22px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        rgba(0,119,200,0.08),
        rgba(0,59,115,0.08)
    );

    color:var(--primary-blue);

    font-size:15px;

    font-weight:600;

    border:1px solid rgba(0,119,200,0.08);
}

/* =========================================================
   BATTERY
========================================================= */

.battery-top{
    display:flex;
    justify-content:space-between;

    margin-bottom:20px;
}

.battery-top span{
    color:var(--gold-dark);

    font-size:22px;

    font-weight:700;
}

/* BAR */

.battery-bar{
    height:18px;

    border-radius:20px;

    background:#e9f1fb;

    overflow:hidden;
}

/* FILL */

.battery-fill{
    width:92%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        var(--gold),
        var(--gold-dark)
    );

    border-radius:20px;

    box-shadow:
    0 0 18px rgba(245,166,35,0.45);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px){

    .performance-top h2{
        font-size:60px;
    }

}

@media(max-width:991px){

    .performance-top{
        flex-direction:column;
    }

    .performance-grid{
        grid-template-columns:1fr;
    }

    .performance-top h2{
        font-size:48px;
    }

    .performance-bike{
        margin:30px 0;
    }

}

@media(max-width:767px){

    .performance-section{
        padding:80px 0;
    }

    .performance-top h2{
        font-size:38px;

        letter-spacing:-1px;
    }

    .performance-top p{
        font-size:16px;
    }

    .speed-circle{
        width:180px;
        height:180px;
    }

    .speed-circle span{
        font-size:48px;
    }

    .speed-card,
    .power-card,
    .mode-card,
    .battery-card{
        padding:26px;
    }

    .power-card h3{
        font-size:54px;
    }

}
/* =========================================================
   PREMIUM EV SHOWCASE SECTION
========================================================= */

.ev-showcase-section{
    padding:40px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );

    overflow:hidden;

    position:relative;
}

/* SOFT GLOW */

.ev-showcase-section::before{
    content:'';

    position:absolute;

    top:-220px;
    right:-220px;

    width:520px;
    height:520px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(120px);
}

/* =========================================================
   HEADING
========================================================= */

.ev-showcase-heading{
    margin-bottom:70px;

    position:relative;
    z-index:2;
}

.ev-showcase-heading h2{
    font-size:68px;

    font-weight:800;

    margin-bottom:16px;

    letter-spacing:-3px;

    background:linear-gradient(
        135deg,
        var(--dark-blue),
        var(--primary-blue)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.ev-showcase-heading p{
    font-size:18px;

    color:#5f6f82;

    line-height:1.9;
}

/* =========================================================
   SWIPER
========================================================= */

.evBikeSlider{
    position:relative;

    padding-bottom:80px;
}

/* =========================================================
   MAIN WRAPPER
========================================================= */

.ev-showcase-wrapper{
    position:relative;

    display:grid;

    grid-template-columns:0.9fr 380px 0.9fr;

    align-items:center;

    gap:30px;

    max-width:1250px;

    margin:auto;
}

/* =========================================================
   LEFT FEATURES
========================================================= */

.ev-features{
    position:relative;

    padding-right:90px;
}

/* CURVE */

.ev-features::after{
    content:'';

    position:absolute;

    right:20px;
    top:-40px;

    width:200px;
    height:560px;

    border-right:3px solid rgba(0,119,200,0.18);

    border-radius:50%;
}

/* FEATURE ITEM */

.feature-item{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    gap:18px;

    margin-bottom:48px;

    z-index:2;
}

/* GLASS CARD */

.feature-item::before{
    content:'';

    position:absolute;

    inset:-16px;

    background:rgba(255,255,255,0.72);

    backdrop-filter:blur(14px);

    border-radius:28px;

    border:1px solid rgba(0,119,200,0.06);

    box-shadow:
    0 15px 40px rgba(0,119,200,0.06);

    z-index:-1;
}

/* TEXT */

.feature-text{
    text-align:right;
}

.feature-text span{
    display:block;

    font-size:15px;

    color:#7a8b9b;

    margin-bottom:6px;
}

.feature-text h4{
    font-size:28px;

    font-weight:700;

    color:var(--dark-blue);

    line-height:1.2;
}

/* ICON */

.feature-icon{
    width:62px;
    height:62px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    flex-shrink:0;

    box-shadow:
    0 14px 35px rgba(0,119,200,0.25);
}

/* =========================================================
   CENTER BIKE
========================================================= */

.ev-bike-center{
    text-align:center;

    position:relative;

    z-index:3;
}

/* GLOW */

/* BIKE */

.ev-bike-center img{
    position:relative;

    z-index:2;

    width:100%;

    max-width:360px;

    transition:0.45s ease;

    animation:floatBike 4s ease-in-out infinite;
}

/* =========================================================
   RIGHT COLORS
========================================================= */

.ev-colors{
    position:relative;

    padding-left:90px;
}

/* CURVE */

.ev-colors::before{
    content:'';

    position:absolute;

    left:20px;
    top:-40px;

    width:200px;
    height:560px;

    border-left:3px solid rgba(0,119,200,0.18);

    border-radius:50%;
}

/* COLOR OPTION */

.color-option{
    position:relative;

    display:flex;
    align-items:center;

    gap:18px;

    margin-bottom:46px;

    cursor:pointer;

    z-index:2;

    transition:0.35s;
}

/* GLASS BG */

.color-option::before{
    content:'';

    position:absolute;

    inset:-14px;

    background:rgba(255,255,255,0.72);

    backdrop-filter:blur(14px);

    border-radius:28px;

    border:1px solid rgba(0,119,200,0.06);

    box-shadow:
    0 15px 40px rgba(0,119,200,0.06);

    opacity:0;

    transition:0.35s;

    z-index:-1;
}

/* ACTIVE */

.color-option.active::before,
.color-option:hover::before{
    opacity:1;
}

/* CIRCLE */

.color-circle{
    width:56px;
    height:56px;

    border-radius:50%;

    border:4px solid #fff;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.10);

    transition:0.35s;

    flex-shrink:0;
}

.color-option.active .color-circle{
    transform:scale(1.1);
}

/* TEXT */

.color-option h4{
    font-size:24px;

    font-weight:600;

    color:#7c8b99;

    transition:0.35s;

    line-height:1.2;
}

.color-option.active h4{
    color:var(--dark-blue);
}

/* =========================================================
   NAVIGATION
========================================================= */

.ev-prev,
.ev-next{
    position:absolute;

    bottom:0;

    width:64px;
    height:64px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    cursor:pointer;

    z-index:10;

    transition:0.35s;

    /* box-shadow:
    0 14px 35px rgba(0,119,200,0.25); */
}

.ev-prev:hover,
.ev-next:hover{
    transform:scale(1.08);

    background:
    linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );
}

.ev-prev{
    left:0;
}

.ev-next{
    right:0;
}

/* =========================================================
   SWIPER FIX
========================================================= */

.swiper-slide{
    opacity:1 !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .ev-showcase-wrapper{
        grid-template-columns:1fr;

        gap:50px;
    }

    .ev-features,
    .ev-colors{
        padding:0;
    }

    .ev-features::after,
    .ev-colors::before{
        display:none;
    }

    .feature-item{
        justify-content:center;
    }

    .feature-text{
        text-align:center;
    }

    .ev-colors{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;

        gap:20px;
    }

    .color-option{
        margin:0;
    }

    .ev-showcase-heading h2{
        font-size:48px;
    }

}

@media(max-width:767px){

    .ev-showcase-section{
        padding:80px 0;
    }

    .ev-showcase-heading{
        margin-bottom:50px;
    }

    .ev-showcase-heading h2{
        font-size:36px;

        letter-spacing:-1px;
    }

    .ev-showcase-heading p{
        font-size:15px;
    }

    .feature-item{
        gap:14px;

        margin-bottom:28px;
    }

    .feature-text span{
        font-size:14px;
    }

    .feature-text h4{
        font-size:22px;
    }

    .feature-icon{
        width:52px;
        height:52px;

        font-size:18px;
    }

    .ev-bike-center img{
        max-width:260px;
    }

    .color-circle{
        width:44px;
        height:44px;
    }

    .color-option h4{
        font-size:18px;
    }

    .ev-prev,
    .ev-next{
        width:54px;
        height:54px;

        font-size:16px;
    }

}
/* =========================================================
   REQUEST CALLBACK BUTTON
========================================================= */
.request-call-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 60px;
    height: 60px;
    padding: 0;

    border: none;
    border-radius: 50%;

    background: linear-gradient(135deg, #25D366, #128C7E);

    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    z-index: 999;

    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.request-call-btn i {
    font-size: 32px;
    line-height: 1;
}

.request-call-btn:hover {
    transform: translateY(-4px) scale(1.08);
    background: linear-gradient(135deg, #2AE06D, #25D366);
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.55);
}
/* =========================================================
   REQUEST MODAL
========================================================= */

.request-call-modal .modal-dialog{
    max-width:540px;
}

.request-call-modal .modal-content{
    border:none;

    border-radius:34px;

    padding:55px 40px;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f7fbff
    );

    box-shadow:0 20px 60px rgba(0,119,200,0.12);
}

/* TOP GLOW */

.request-call-modal .modal-content::before{
    content:'';

    position:absolute;

    top:-140px;
    right:-140px;

    width:320px;
    height:320px;

    background:rgba(0,119,200,0.08);

    border-radius:50%;

    filter:blur(80px);
}

/* =========================================================
   CLOSE BUTTON
========================================================= */

.request-close-btn{
    position:absolute;

    top:22px;
    right:22px;

    width:46px;
    height:46px;

    border:none;
    border-radius:50%;

    background:#eef6ff;

    color:var(--dark-blue);

    font-size:20px;

    z-index:10;

    transition:0.3s;
}

.request-close-btn:hover{
    background:var(--primary-blue);
    color:#fff;
}

/* =========================================================
   CONTENT
========================================================= */

.request-modal-content{
    position:relative;
    z-index:2;
}

.request-modal-content h2{
    font-size:34px;

    line-height:1.1;

    font-weight:700;

    color:var(--dark-blue);

    margin-bottom:16px;

    letter-spacing:-2px;
}

.request-subtitle{
    font-size:15px;

    color:#66788a;

    margin-bottom:38px;

    line-height:1.8;
}

/* =========================================================
   FORM
========================================================= */

.request-call-form .form-group{
    position:relative;
    margin-bottom:18px;
}

/* INPUT */

.request-call-form .form-group input{
    width:100%;

    height:58px;

    border:1px solid rgba(0,119,200,0.08);

    border-radius:18px;

    background:#ffffff;

    padding:0 24px 0 68px;

    font-size:15px;

    color:var(--dark-blue);

    outline:none;

    transition:0.3s;

    box-shadow:0 6px 20px rgba(0,119,200,0.04);
}

.request-call-form .form-group input:focus{
    border-color:var(--primary-blue);

    box-shadow:0 10px 30px rgba(0,119,200,0.12);
}

.request-call-form .form-group input::placeholder{
    color:#9aaaba;
}

/* ICONS */

.request-call-form .form-group i{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    color:var(--primary-blue);

    font-size:18px;
}

.request-call-form .fa-user{
    left:24px;
}

.request-call-form .left-icon{
    left:24px;
}

.request-call-form .right-icon{
    right:24px;
}

/* =========================================================
   PHONE GROUP
========================================================= */

.request-call-form .phone-group{
    display:flex;
    align-items:center;

    border:1px solid rgba(0,119,200,0.08);

    border-radius:18px;

    background:#ffffff;

    overflow:hidden;

    box-shadow:0 6px 20px rgba(0,119,200,0.04);
}

.request-call-form .phone-group span{
    width:90px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#6f8092;

    font-size:15px;

    border-right:1px solid rgba(0,119,200,0.08);
}

.request-call-form .phone-group input{
    border:none;
    background:transparent;
    padding-left:24px;
    box-shadow:none !important;
}

/* =========================================================
   MODEL
========================================================= */

.request-call-form .model-select{
    margin-top:28px;
}

.request-call-form .model-select p{
    font-size:17px;
    font-weight:600;

    margin-bottom:18px;

    color:var(--dark-blue);
}

/* RADIO */

.request-call-form .radio-group{
    display:flex;
    align-items:center;
    gap:34px;
}

.request-call-form .radio-group label{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.request-call-form .radio-group input{
    width:18px;
    height:18px;

    accent-color:var(--gold);
}

.request-call-form .radio-group span{
    font-size:15px;
    color:#5e6f82;
}

/* =========================================================
   BUTTON
========================================================= */

.request-call-form .offer-btn{
    width:100%;

    height:58px;

    border:none;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );

    color:#fff;

    font-size:17px;
    font-weight:600;

    margin-top:36px;

    transition:0.35s;

    box-shadow:0 12px 30px rgba(245,166,35,0.25);
}

.request-call-form .offer-btn:hover{
    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        var(--gold-dark),
        var(--gold)
    );
}

/* =========================================================
   NOTE
========================================================= */

.request-call-form .offer-note{
    font-size:13px;

    line-height:1.8;

    color:#7b8a99;

    margin-top:22px;
}

/* =========================================================
   BACKDROP
========================================================= */

.modal-backdrop.show{
    opacity:0.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:767px){

    .request-call-btn{
        right:16px;
        bottom:18px;

        height:56px;

        padding:0 22px;

        font-size:14px;
    }

    .request-call-modal .modal-content{
        padding:42px 24px;

        border-radius:28px;
    }

    .request-modal-content h2{
        font-size:28px;
    }

    .request-subtitle{
        font-size:14px;
    }

    .request-call-form .form-group input,
    .request-call-form .phone-group span{
        height:56px;

        font-size:15px;
    }

    .request-call-form .offer-btn{
        height:56px;

        font-size:16px;
    }

    .request-call-form .radio-group{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

}
/* =========================================
   HERO SECTION
========================================= */

.compact-hero-section{
    min-height:100vh;
    padding-top:110px;

    background:
    radial-gradient(
        circle at top right,
        rgba(245,166,35,0.18),
        transparent 28%
    ),

    radial-gradient(
        circle at bottom left,
        rgba(0,119,200,0.15),
        transparent 30%
    ),

    linear-gradient(
        135deg,
        #eef7ff 0%,
        #ffffff 45%,
        #edf6ff 100%
    );

    overflow:hidden;
    position:relative;
}

/* =========================================
   WRAPPER
========================================= */

.compact-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 0.9fr 260px;
    align-items:center;
    gap:30px;
    min-height:calc(100vh - 110px);
    padding:0 70px;
}

/* =========================================
   LEFT
========================================= */

.compact-hero-left{
    display:flex;
    align-items:flex-start;
    gap:35px;
}

/* =========================================
   SIDE NAV
========================================= */

.compact-side-nav{
    width:80px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* NUMBER */

.compact-count{
    font-size:42px;
    font-weight:700;
    color:var(--dark-blue);
    line-height:1;
    margin-bottom:25px;
}

/* LINE */

.compact-line{
    width:2px;
    height:170px;

    background:linear-gradient(
        to bottom,
        var(--gold),
        rgba(0,119,200,0.2)
    );

    margin-bottom:30px;
}

/* DOTS */

.compact-pagination{
    display:flex !important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
}

/* DOT */

.compact-dot{
    width:14px !important;
    height:14px !important;
    border-radius:50%;
    border:2px solid var(--primary-blue);
    background:transparent !important;
    opacity:1 !important;
    margin:0 !important;
    cursor:pointer;
    transition:0.3s;
}

/* ACTIVE */

.compact-dot.swiper-pagination-bullet-active{
    background:var(--gold) !important;
    border-color:var(--gold);
    transform:scale(1.1);
}

/* =========================================
   CONTENT
========================================= */

.compact-content{
    max-width:520px;
}

.compact-mini-title{
    display:inline-block;

    font-size:13px;
    letter-spacing:3px;

    color:var(--primary-blue);

    margin-bottom:22px;
    font-weight:600;

    background:rgba(0,119,200,0.08);

    padding:10px 18px;
    border-radius:50px;
}

.compact-content .hero-title{
    font-size:74px;
    line-height:0.92;
    font-weight:800;

    background:linear-gradient(
        135deg,
        var(--dark-blue),
        var(--primary-blue)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:24px;
    letter-spacing:-4px;
}

.compact-desc{
    border-left:4px solid var(--gold);
    padding-left:22px;
    margin-bottom:34px;
}

.compact-desc p{
    font-size:17px;
    line-height:1.9;
    color:#556270;
    margin:0;
}

/* =========================================
   BUTTONS
========================================= */

.compact-buttons{
    display:flex;
    gap:16px;
}

.compact-btn{
    height:56px;
    padding:0 34px;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:15px;
    font-weight:600;

    transition:0.35s;
    text-decoration:none;
}

/* PRIMARY BUTTON */

.dark-btn{
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );

    color:#fff;

    box-shadow:0 12px 28px rgba(245,166,35,0.35);
}

.dark-btn:hover{
    transform:translateY(-4px);

    background:linear-gradient(
        135deg,
        var(--gold-dark),
        var(--gold)
    );

    color:#fff;
}

/* SECONDARY BUTTON */

.light-btn{
    background:#fff;

    color:var(--dark-blue);

    border:1px solid rgba(0,119,200,0.08);

    backdrop-filter:blur(10px);
}

.light-btn:hover{
    background:var(--dark-blue);
    color:#fff;
}

/* =========================================
   BIKE
========================================= */

.compact-bike{
    text-align:center;
    position:relative;
}

/* GLOW */

.compact-bike::before{
    content:'';

    position:absolute;

    width:520px;
    height:520px;

    background:
    radial-gradient(
        circle,
        rgba(0,119,200,0.22),
        rgba(245,166,35,0.12)
    );

    border-radius:50%;

    filter:blur(70px);

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}

/* IMAGE */

.compact-bike img{
    position:relative;
    z-index:2;

    width:100%;


    animation:floatBike 4s ease-in-out infinite;
}

/* =========================================
   STATS
========================================= */

.compact-stats{
    background:rgba(255,255,255,0.72);

    backdrop-filter:blur(18px);

    border:1px solid rgba(0,119,200,0.08);

    border-radius:30px;

    padding:36px;

    box-shadow:0 18px 40px rgba(0,119,200,0.08);
}

.compact-stat-item{
    margin-bottom:30px;
}

.compact-stat-item:last-child{
    margin-bottom:0;
}

.compact-stat-item h3{
    font-size:44px;
    font-weight:700;

    color:var(--dark-blue);

    margin-bottom:6px;
    line-height:1;
}

.compact-stat-item h3 span{
    font-size:16px;
     color:#1f2937;
}

.compact-stat-item p{
    font-size:14px;
    color:#000000;
    font-weight:500;
    margin:0;
}

/* =========================================
   FLOAT
========================================= */

@keyframes floatBike{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}


.footer-logo-img{
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo{
    display: inline-block;
    margin-bottom: 20px;
}

/* ==========================================
   MOBILE HEADER
========================================== */

@media (max-width: 991px){

    .header-area{
        top:8px;
    }

    .custom-navbar{
        padding:12px 15px;
        border-radius:18px;
    }

    .logo-img{
        height:42px;
    }

    .navbar-toggler{
        padding:4px 8px;
    }

    .navbar-collapse{
        margin-top:15px;
        background:#fff;
        border-radius:18px;
        padding:15px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .navbar-nav{
        align-items:center !important;
        text-align:center;
        width:100%;
    }

    .navbar-nav .nav-item{
        width:100%;
    }

    .nav-link{
        padding:12px 0 !important;
        font-size:15px;
        border-bottom:1px solid #f3f5f7;
    }

    .navbar-nav .nav-item:last-child .nav-link{
        border-bottom:none;
    }

    .test-drive-btn{
        width:100%;
        text-align:center;
        margin-top:15px;
        padding:14px;
        font-size:15px;
    }

    .d-flex.align-items-center{
        width:100%;
        display:block !important;
    }
}

/* Extra Small Devices */

@media (max-width:576px){

    .custom-navbar{
        padding:10px 12px;
        border-radius:15px;
    }

    .logo-img{
        height:36px;
    }

    .navbar-toggler{
        font-size:14px;
    }

    .navbar-collapse{
        padding:12px;
    }

    .nav-link{
        font-size:14px;
    }

    .test-drive-btn{
        height:48px;
        display:flex;
        align-items:center;
        justify-content:center;
    }
}

.review-card{
    background:#fff;
    border-radius:25px;
    padding:30px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,119,200,.08);
}

.review-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.review-top img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.review-top .review-name{
    margin:0;
    color:#003B73;
    font-weight:700;
}

.review-top span{
    color:#6d7d8b;
}

.review-stars{
    color:#F5A623;
    font-size:18px;
    margin-bottom:20px;
}

.review-card p{
    color:#5f6f82;
    line-height:1.8;
}

.carousel-control-prev{
    left:-70px;
    width:60px;
}

.carousel-control-next{
    right:-70px;
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:#0077C8;
    border-radius:50%;
    padding:20px;
}

@media(max-width:991px){

    .carousel-item .row{
        display:block;
    }

    .carousel-item .col-lg-4{
        margin-bottom:20px;
    }

}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:#0077C8;
    width:55px;
    height:55px;
    border-radius:50%;
    background-size:22px;
    box-shadow:0 8px 20px rgba(0,119,200,.25);
}


@media (max-width:767px){

    /* HERO LAYOUT */

    .compact-hero-wrapper{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:20px;
        gap:15px;
    }

    /* CONTENT */

    .compact-hero-left{
        width:100%;
    }

    .compact-content{
        width:100%;
    }

    .compact-content .hero-title{
        font-size:38px;
        line-height:1.05;
        margin-bottom:12px;
    }

    .compact-desc p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:15px;
    }

    /* BUTTONS */

    .compact-buttons{
        display:flex;
        gap:12px;
        justify-content:center;
        margin-top:15px;
        margin-bottom:15px;
    }

    .compact-btn{
        width:140px;
        padding:14px 0;
    }

    /* BIKE */

    .compact-bike{
        width:100%;
        text-align:center;
        margin:0;
    }

    .compact-bike img{
        width:100%;
        display:block;
        margin:auto;
    }

    /* STATS */

    .compact-stats{
        width:100%;
        max-width:320px;

        display:flex;
        justify-content:space-between;
        align-items:center;

        padding:20px;

        margin:15px auto 0;

        border-radius:25px;

        background:#fff;

        box-shadow:0 10px 30px rgba(0,0,0,.05);

        height:auto !important;
        min-height:auto !important;
    }

    .compact-stat-item{
        background:transparent !important;
        box-shadow:none !important;
        padding:0 !important;
        border:none !important;
        flex:1;
    }

    .compact-stat-item h3{
        font-size:18px;
        margin-bottom:4px;
        line-height:1.1;
    }

    .compact-stat-item h3 span{
        display:block;
        font-size:11px;
    }

    .compact-stat-item p{
        font-size:12px;
        margin:0;
        line-height:1.3;
    }

    .compact-side-nav{
        display:none;
    }

}

/* ==========================================
   FEATURED MODELS SECTION
========================================== */

.featured-models-section{
    padding:30px 0;
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );
}

.featured-models-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ==========================================
   CARD
========================================== */

.model-card{
    position:relative;

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    padding:35px;

    border:1px solid rgba(0,119,200,.06);

    box-shadow:
    0 20px 50px rgba(0,119,200,.08);

    transition:.35s;
}

.model-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 30px 70px rgba(0,119,200,.14);
}

/* ==========================================
   TAG
========================================== */

.model-tag{
    position:absolute;

    top:20px;
    right:20px;

    padding:8px 16px;

    border-radius:30px;

    background:#f5a623;

    color:#111827;

    font-size:12px;
    font-weight:600;
}

/* ==========================================
   IMAGE
========================================== */

.model-image{
    text-align:center;
    margin-bottom:25px;
}

.model-image img{
    width:100%;
    max-width:260px;
    height:220px;
    object-fit:contain;

    transition:.4s;
}

.model-card:hover .model-image img{
    transform:scale(1.05);
}

/* ==========================================
   CONTENT
========================================== */

.model-content h3{
    font-size:34px;
    font-weight:700;

    color:#003B73;

    margin-bottom:12px;
}

.model-description{
    font-size:16px;
    line-height:1.8;

    color:#66788a;

    margin-bottom:25px;
}

/* ==========================================
   SPECS
========================================== */

.model-specs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;

    margin-bottom:25px;
}

.spec-box{
    background:#f7fbff;

    border-radius:18px;

    min-height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:15px;
}

.spec-box h4{
    font-size:14px;
    font-weight:700;

      color: #222 !important;

    margin-bottom:8px;
}

.spec-box span{
    font-size:13px;
     color: #222 !important;
}

/* ==========================================
   COLORS
========================================== */

.model-colors{
    display:flex;
    gap:12px;

    margin-bottom:25px;
}

.model-colors span{
    width:22px;
    height:22px;

    border-radius:50%;

    border:3px solid #fff;

    box-shadow:
    0 5px 15px rgba(0,0,0,.15);
}

/* ==========================================
   PRICE
========================================== */

.model-price{
    margin-bottom:25px;
}

.model-price small{
    display:block;

    color:#000000;

    margin-bottom:5px;

    font-size:13px;
}

.model-price h2{
    font-size:42px;
    font-weight:800;

    color:#111827;

    margin:0;
}

/* ==========================================
   BUTTONS
========================================== */

.model-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.model-btn{
    text-decoration:none;
}

.primary-btn{
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #0077C8,
        #003B73
    );

    color:#fff;

    font-size:15px;
    font-weight:600;

    box-shadow:
    0 12px 30px rgba(0,119,200,.25);

    transition:.3s;
}

.primary-btn:hover{
    color:#fff;

    transform:translateY(-2px);
}

.secondary-btn{
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;

    background:#fff;

    border:2px solid rgba(0,119,200,.12);

    color:#003B73;

    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.secondary-btn:hover{
    background:#f5f9ff;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px){

    .featured-models-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px){

    .featured-models-section{
        padding:80px 0;
    }

    .featured-models-grid{

        display:flex;

        overflow-x:auto;

        gap:18px;

        padding:10px 0 20px;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;
    }

    .featured-models-grid::-webkit-scrollbar{
        display:none;
    }

    .model-card{

        min-width:350px;
        width:350px;

        flex-shrink:0;

        scroll-snap-align:center;

        padding:28px;

        border-radius:28px;
    }

    .model-image img{
        max-width:420px;
        height:180px;
    }

    .model-content h3{
        font-size:24px;
    }

    .model-description{
        font-size:14px;
        line-height:1.7;
    }

    .model-specs{
        gap:8px;
    }

    .spec-box{
        min-height:95px;
        padding:10px;
    }

    .spec-box h4{
        font-size:18px;
        line-height:1.2;
    }

    .spec-box span{
        font-size:12px;
    }

    .model-price h2{
        font-size:36px;
    }

    .primary-btn,
    .secondary-btn{
        height:52px;
        font-size:14px;
    }
}


/* ==========================================
   EV SHOWCASE MOBILE
========================================== */

@media (max-width:767px){

    .ev-showcase-section{
        padding:70px 0;
        overflow:hidden;
    }

    .ev-showcase-heading{
        margin-bottom:35px;
    }

    .ev-showcase-heading h2{
        font-size:32px;
        line-height:1.2;
        margin-bottom:10px;
    }

    .ev-showcase-heading p{
        font-size:14px;
    }

    /* MAIN LAYOUT */

    .ev-showcase-wrapper{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:25px;

        padding:0 15px;
    }

    /* =====================================
       BIKE FIRST
    ===================================== */

    .ev-bike-center{
        order:1;
        width:100%;
        text-align:center;
    }

    .ev-bike-center::before{
        width:250px;
        height:250px;
    }

    .ev-bike-center img{
        max-width:260px;
        width:100%;
        margin:auto;
    }

    /* =====================================
       FEATURES
    ===================================== */

    .ev-features{
        order:2;

        width:100%;

        display:grid;
        grid-template-columns:repeat(3,1fr);

        gap:10px;

        padding:0;
    }

    .ev-features::after{
        display:none;
    }

    .feature-item{
        flex-direction:column;

        justify-content:center;
        align-items:center;

        text-align:center;

        gap:8px;

        margin:0;

        padding:15px 10px;

        border-radius:18px;

        background:#fff;

        box-shadow:
        0 10px 25px rgba(0,119,200,.08);
    }

    .feature-item::before{
        display:none;
    }

    .feature-icon{
        width:45px;
        height:45px;

        border-radius:12px;

        font-size:16px;
    }

    .feature-text{
        text-align:center;
    }

    .feature-text span{
        font-size:12px;
        margin-bottom:4px;
    }

    .feature-text h4{
        font-size:16px;
        margin:0;
    }

    /* =====================================
       COLORS
    ===================================== */

    .ev-colors{
        order:3;

        width:100%;

        display:flex;
        flex-direction:column;

        gap:10px;

        padding:0;
    }

    .ev-colors::before{
        display:none;
    }

    .color-option{
        margin:0;

        padding:12px 15px;

        border-radius:18px;

        background:#fff;

        box-shadow:
        0 8px 20px rgba(0,119,200,.06);
    }

    .color-option::before{
        display:none;
    }

    .color-circle{
        width:36px;
        height:36px;
    }

    .color-option h4{
        font-size:15px;
        margin:0;
    }

    /* =====================================
       NAVIGATION
    ===================================== */

    .ev-prev,
    .ev-next{

        width:46px;
        height:46px;

        font-size:14px;

        bottom:-10px;
    }

    .ev-prev{
        left:20px;
    }

    .ev-next{
        right:20px;
    }

    .evBikeSlider{
        padding-bottom:60px;
    }

}

@media (max-width:767px){

    .evBikeSlider{
        overflow: visible !important;
        padding-bottom: 80px;
        position: relative;
    }

    .ev-prev,
    .ev-next{
        width: 50px;
        height: 50px;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:50%;

        background:linear-gradient(
            135deg,
            #0077C8,
            #003B73
        );

        color:#fff;

        position:absolute;
        bottom:-60px;

        z-index:9999;
    }

    .ev-prev{
        left:15px;
    }

    .ev-next{
        right:15px;
    }

    .ev-showcase-wrapper{
        overflow: visible !important;
    }

    .swiper-slide{
        overflow: visible !important;
    }

}

/* ==========================================
   WHY CHOOSE MOBILE
========================================== */

@media(max-width:767px){

    .why-choose-section{
        padding:80px 0;
    }

    .section-heading h2{
        font-size:36px;
        letter-spacing:-1px;
    }

    .section-heading p{
        font-size:15px;
    }

    .why-choose-grid{

        display:flex;

        overflow-x:auto;

        gap:16px;

        padding:10px 0 20px;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;
    }

    .why-choose-grid::-webkit-scrollbar{
        display:none;
    }

    .why-card{

        min-width:280px;
        width:280px;

        flex-shrink:0;

        scroll-snap-align:center;

        padding:28px;

        border-radius:28px;
    }

    .why-icon{

        width:70px;
        height:70px;

        border-radius:20px;

        font-size:24px;

        margin-bottom:20px;
    }

    .why-card h3{
        font-size:22px;
        line-height:1.3;
        margin-bottom:12px;
    }

    .why-card p{
        font-size:14px;
        line-height:1.7;
    }

}

/* ==========================================
   PERFORMANCE MOBILE RESPONSIVE
========================================== */

@media(max-width:767px){

    .performance-section{
        padding:80px 0;
    }

    .performance-top{
        flex-direction:column;
        gap:20px;
        margin-bottom:50px;
        text-align:center;
    }

    .performance-top h2{
        font-size:36px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .performance-top p{
        max-width:100%;
        font-size:15px;
        line-height:1.8;
    }

    .performance-grid{
        display:flex;
        flex-direction:column;
        gap:30px;
    }

    /* Show Bike First */
    .performance-bike{
        order:1;
        margin-bottom:10px;
    }

    .performance-bike img{
        max-width:280px;
        width:100%;
    }

    .performance-left{
        order:2;
    }

    .performance-right{
        order:3;
    }

    /* Speed Card */

    .speed-card{
        padding:25px;
        margin-bottom:20px;
    }

    .speed-circle{
        width:140px;
        height:140px;
    }

    .speed-circle span{
        font-size:40px;
    }

    .speed-circle small{
        font-size:16px;
    }

    .speed-card h3{
        font-size:22px;
        margin-top:20px;
    }

    /* Stats */

    .performance-stats{
        grid-template-columns:1fr;
        gap:15px;
    }

    .stat-box{
        text-align:center;
        padding:22px;
    }

    .stat-box h4{
        font-size:28px;
        margin-bottom:6px;
    }

    .stat-box span{
        font-size:14px;
    }

    /* Right Cards */

    .power-card,
    .mode-card,
    .battery-card{
        padding:24px;
        margin-bottom:16px;
    }

    .power-card{
        text-align:center;
    }

    .power-card h3{
        font-size:46px;
        margin-bottom:5px;
    }

    .power-card span{
        font-size:15px;
    }

    .mode-card h4,
    .battery-card h4{
        font-size:20px;
        margin-bottom:15px;
    }

    .mode-list{
        justify-content:center;
        gap:10px;
    }

    .mode-list span{
        padding:10px 16px;
        font-size:13px;
    }

    .battery-top{
        align-items:center;
    }

    .battery-top span{
        font-size:18px;
    }

    .battery-bar{
        height:12px;
    }

}

/* =====================================
   TESTIMONIAL SECTION
===================================== */

.testimonial-section{
    padding:40px 0;
    background:#f8fbff;
}

.testimonial-slider{

    display:flex;

    gap:25px;

    overflow-x:auto;

    padding:10px 0 20px;

    scroll-snap-type:x mandatory;

    scrollbar-width:none;

    -webkit-overflow-scrolling:touch;
}

.testimonial-slider::-webkit-scrollbar{
    display:none;
}

/* CARD */

.review-card{

    flex:0 0 380px;

    background:#fff;

    padding:30px;

    border-radius:28px;

    box-shadow:
    0 15px 40px rgba(0,119,200,.08);

    scroll-snap-align:start;

    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}
/* =====================================
   EQUAL HEIGHT TESTIMONIAL CARDS
===================================== */

.testimonial-slider{
    align-items:stretch;
}

.review-card{

    flex:0 0 380px;

    min-height:320px;
    height:320px;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;
}

/* Keep review content aligned */

.review-top{
    min-height:80px;
}

.review-stars{
    min-height:30px;
}

.review-card p{
    flex:1;
    margin-top:10px;
}

.testimonial-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scrollbar-width:none;
}

.testimonial-slider::-webkit-scrollbar{
    display:none;
}

.review-card{
    flex:0 0 calc((100% - 50px) / 3);
    min-width:calc((100% - 50px) / 3);
}
.review-top{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

.review-top img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;
}

.review-top .review-name{
    margin:0;
    font-size:20px;
}

.review-top span{
    color:#6c757d;
    font-size:14px;
}

.review-stars{

    color:#f5a623;

    font-size:18px;

    margin-bottom:15px;
}

.review-card p{

    font-size:15px;

    line-height:1.8;

    color:#5d6b7a;

    margin:0;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:767px){

    .testimonial-section{
        padding:80px 0;
    }

    .testimonial-slider{
        gap:15px;
    }

    .review-card{

        flex:0 0 90%;

        padding:25px;

        border-radius:24px;
    }

    .review-top img{
        width:60px;
        height:60px;
    }

    .review-top .review-name{
        font-size:18px;
    }

    .review-card p{
        font-size:14px;
    }

}

@media(min-width:768px) and (max-width:991px){

    .review-card{
        flex:0 0 calc((100% - 20px) / 2);
        min-width:calc((100% - 20px) / 2);
    }

}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

.product-specs{
    display: flex;
    gap: 12px;
    margin: 18px 0;
    flex-wrap: wrap;
}

.spec-item{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fb;
    border: 1px solid #e8e8e8;
    padding: 12px 16px;
    border-radius: 14px;
    min-width: 180px;
    flex: 1;
    transition: all 0.3s ease;
}

.spec-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.spec-item i{
    width: 42px;
    height: 42px;
    background: #f5a623;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.spec-item div{
    display: flex;
    flex-direction: column;
}

.spec-item small{
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item span{
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.model-select select {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
    background: #fff;
    appearance: none;
    cursor: pointer;
}

/* Firefox support */
.model-select select {
    overflow-y: auto;
}

.stat-value{
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.stat-value span{
    font-size: 26px;
    font-weight: 600;
}