.contact-hero{
    height:750px;
    background:url('../images/contacthero.webp') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

/* Optional dark overlay */

.contact-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,35,75,.25);
}
.contact-info-section{
    padding:20px 0;
    background:#f8fbff;
}

.info-card{
    background:#fff;
    text-align:center;
    padding:40px 30px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}
.info-card p a{
    text-decoration: none;
    color:black;
}
.info-card i{
    font-size:35px;
    color:#0077C8;
    margin-bottom:15px;
}

.contact-form-section{
    padding:20px 0;
    background:#f8fbff;
}

.contact-content{
    padding-right:40px;
}

.sub-title{
    display:inline-block;
    color:#0077C8;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.contact-content h1{
    font-size:58px;
    font-weight:700;
    line-height:1.1;
    color:#003B73;
    margin-bottom:25px;
}

.contact-content p{
    font-size:16px;
    color:#6d7d8b;
    line-height:1.9;
    margin-bottom:35px;
}

.contact-features{
    display:flex;
    flex-direction:column;
    gap:22px;
    margin-top:40px;
}

.feature-item{
    background:#fff;
    border-radius:22px;
    height:95px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.3s ease;
}

.feature-item:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,119,200,.08);
}

.feature-item i{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#EAF6FF;
    color:#0077C8;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    flex-shrink:0;
}

.feature-item span{
    font-size:17px;
    font-weight:600;
    color:#003B73;
    line-height:1;
}
.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    font-weight:600;
    color:#003B73;
}

.feature-item i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#eaf6ff;
    color:#0077C8;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* FORM CARD */

.contact-form-card{
    background:#fff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.contact-form-card .form-control{
    height:58px;
    border:1px solid #e5edf5;
    border-radius:15px;
    padding:0 20px;
    font-size:15px;
    box-shadow:none;
}

.contact-form-card textarea.form-control{
    height:auto;
    padding-top:18px;
}

.contact-form-card .form-control:focus{
    border-color:#0077C8;
    box-shadow:0 0 0 4px rgba(0,119,200,.1);
}

/* BUTTON */

.send-btn{
    border:none;
    padding:15px 35px;
    border-radius:50px;
    background:linear-gradient(135deg,#0077C8,#00a8ff);
    color:#fff;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

.send-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,119,200,.25);
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-content{
        padding-right:0;
        margin-bottom:40px;
        text-align:center;
    }

    .contact-content h2{
        font-size:42px;
    }

    .contact-features{
        align-items:center;
    }

    .contact-form-card{
        padding:30px;
    }

}
.map-section iframe{
    width:100%;
    height:500px;
    border:0;
    padding: 10px 0;
}

.test-drive-cta{
    padding:100px 0;
    background:#f8fbff;
}



/* =========================================================
   CTA SECTION
========================================================= */

.cta-section{
    padding:20px 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 */
/* ==========================================
   MOBILE OPTIMIZATION
========================================== */

@media (max-width: 991px){

    /* Hero */
    .contact-hero{
        height:300px;
        background-position:center;
    }

    /* Sections */
    .contact-info-section,
    .contact-form-section,
    .cta-section{
        padding:15px 0;
    }

    /* Contact Content */
    .contact-content{
        padding-right:0;
        text-align:center;
        margin-bottom:30px;
    }

    .contact-content h2{
        font-size:34px;
        line-height:1.2;
        margin-bottom:15px;
    }

    .contact-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    /* Contact Cards */
    .info-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .info-card i{
        font-size:28px;
        margin-bottom:10px;
    }

    .info-card h4{
        font-size:18px;
        margin-bottom:8px;
    }

    .info-card p{
        font-size:14px;
        margin-bottom:0;
    }

    /* Features */
    .contact-features{
        gap:12px;
        margin-top:20px;
    }

    .feature-item{
        height:auto;
        min-height:70px;
        justify-content:flex-start;
        padding:15px;
        border-radius:16px;
    }

    .feature-item i{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .feature-item span{
        font-size:14px;
    }

    /* Form */
    .contact-form-card{
        padding:20px;
        border-radius:20px;
    }

    .contact-form-card .form-control{
        height:50px;
        font-size:14px;
    }

    .contact-form-card textarea.form-control{
        min-height:120px;
    }

    .contact-form-card .mb-4{
        margin-bottom:12px !important;
    }

    .send-btn{
        width:100%;
        height:52px;
        padding:0;
        font-size:15px;
    }

    /* Map */
    .map-section iframe{
        height:280px;
    }

    /* CTA */
    .cta-wrapper{
        padding:35px 20px;
        border-radius:20px;
        text-align:center;
    }

    .cta-content{
        margin-bottom:25px;
    }

    .cta-badge{
        font-size:11px;
        padding:8px 14px;
        margin-bottom:15px;
    }

    .cta-content h2{
        font-size:30px;
        line-height:1.2;
        margin-bottom:15px;
    }

    .cta-content p{
        font-size:15px;
        line-height:1.7;
        margin:0 auto;
    }

    .cta-buttons{
        gap:12px;
    }

    .cta-btn{
        height:52px;
        font-size:14px;
        border-radius:14px;
    }
}

/* Extra Small Devices */
@media (max-width:576px){

    .container{
        padding-left:15px;
        padding-right:15px;
    }

    .contact-hero{
        height:220px;
    }

    .contact-content h2{
        font-size:28px;
    }

    .cta-content h2{
        font-size:26px;
    }

    .contact-form-card{
        padding:15px;
    }

    .info-card{
        padding:20px 15px;
    }
}

@media (max-width: 991px){

    .contact-hero{
        margin-top: 90px;
        height: 220px;
        background-position: center;
    }

}

/* Overlay */
.success-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

    animation:fadeIn .3s ease;
}

/* Popup */
.success-popup{
    width:420px;
    max-width:90%;

    background:#fff;
    border-radius:20px;

    padding:40px 30px;
    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

    animation:popup .35s ease;
}

.success-icon{
    width:75px;
    height:75px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#16a34a;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:38px;
    font-weight:700;
}

.success-popup h3{
    font-size:30px;
    margin-bottom:12px;
    color:#08264b;
}

.success-popup p{
    color:#666;
    font-size:17px;
    line-height:1.7;
    margin-bottom:30px;
}

.success-popup button{
    border:none;
    background:#f5a623;
    color:#fff;

    padding:14px 40px;
    border-radius:40px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;
}

.success-popup button:hover{
    background:#e09000;
}

@keyframes popup{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}