/* ==========================================
DEALER HERO
========================================== */

.dealer-hero{
    padding:140px 0;
    background:linear-gradient(135deg,#003B73,#0077C8);
    position:relative;
    overflow:hidden;
}

.dealer-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-200px;
    right:-150px;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}

.sub-title{
    display:inline-block;
    color:#fff;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.dealer-hero h1{
    font-size:68px;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.dealer-hero p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    max-width:650px;
    margin:auto auto 30px;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    border-radius:50px;
    background:#fff;
    color:#003B73;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.theme-btn:hover{
    transform:translateY(-3px);
}

/* ==========================================
SEARCH
========================================== */

.dealer-search-section{
    margin-top:-60px;
    position:relative;
    z-index:10;
}

.dealer-search-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.search-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:15px;
    background:#0077C8;
    color:#fff;
    font-weight:600;
}

.form-control{
    height:55px;
    border-radius:15px;
    border:1px solid #dfe8f0;
}

.form-control:focus{
    box-shadow:none;
    border-color:#0077C8;
}

/* ==========================================
SECTION TITLE
========================================== */

.section-title{
    margin-bottom:60px;
}

.section-title h1{
    font-size:48px;
    color:#003B73;
    font-weight:700;
}

.section-title p{
    color:#6d7d8b;
}

/* ==========================================
DEALERS
========================================== */

.dealers-section{
    padding:20px 0;
}

.dealer-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.dealer-card:hover{
    transform:translateY(-10px);
}

.dealer-image{
    height:240px;
    overflow:hidden;
}

.dealer-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.dealer-card:hover .dealer-image img{
    transform:scale(1.08);
}

.dealer-content{
    padding:30px;
}

.dealer-content h4{
    color:#003B73;
    font-size:24px;
    margin-bottom:10px;
}

.location{
    display:block;
    color:#0077C8;
    font-size:14px;
    margin-bottom:15px;
}

.dealer-content p{
    color:#6d7d8b;
    line-height:1.8;
}

.dealer-contact{
    margin:20px 0;
    font-weight:600;
    color:#003B73;
}

.dealer-btn{
    display:inline-block;
    padding:12px 25px;
    background:#0077C8;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
}

.dealer-btn:hover{
    color:#fff;
}

/* ==========================================
STATS
========================================== */

.dealer-stats{
    padding:20px 0;
    background:#f8fbff;
}

.stat-box{
    background:#fff;
    padding:40px 20px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stat-box h2{
    font-size:52px;
    color:#0077C8;
    margin-bottom:10px;
}

.stat-box p{
    color:#6d7d8b;
    margin:0;
}

/* ==========================================
WHY CHOOSE US
========================================== */

.why-dealer{
    padding:30px 0;
}

.why-card{
    background:#fff;
    border-radius:25px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:40px;
    color:#0077C8;
    margin-bottom:20px;
}

.why-card h4{
    font-size:20px;
    color:#003B73;
}

/* ==========================================
BECOME DEALER
========================================== */

.become-dealer{
    padding:140px 0;
    background:#f8fbff;
}

.dealer-form-wrapper{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* ==========================================
FAQ
========================================== */

.dealer-faq{
    padding:40px 0;
}

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.accordion-button{
    background:#fff;
    color:#003B73;
    font-weight:600;
    padding:22px;
    border:none;
}

.accordion-button:focus{
    box-shadow:none;
}

/* ==========================================
CTA
========================================== */

.dealer-cta{
    padding:10px 0;
}

.cta-box{
    background:linear-gradient(135deg,#003B73,#0077C8);
    border-radius:35px;
    padding:80px 40px;
}

.cta-box h2{
    color:#fff;
    font-size:48px;
    margin-bottom:15px;
}

.cta-box p{
    color:rgba(255,255,255,.85);
    margin-bottom:30px;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .dealer-hero{
        padding:100px 0;
    }

    .dealer-hero h1{
        font-size:48px;
    }

    .section-title h1{
        font-size:38px;
    }

    .dealer-form-wrapper{
        padding:30px;
    }

    .stat-box{
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .dealer-hero h1{
        font-size:36px;
    }

    .dealer-hero p{
        font-size:15px;
    }

    .section-title h1{
        font-size:30px;
    }

    .dealer-content{
        padding:20px;
    }

    .cta-box{
        padding:50px 20px;
    }

    .cta-box h2{
        font-size:30px;
    }
}

.dealer-form-wrapper .theme-btn{
    background: linear-gradient(135deg,#003B73,#0077C8);
    color:#fff;
    border:none;
    height:55px;
    border-radius:15px;
    font-weight:600;
    transition:0.3s ease;
}

.dealer-form-wrapper .theme-btn:hover{
    background: linear-gradient(135deg,#002d59,#0066ad);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,119,200,.25);
}

/* ==========================================
MOBILE OPTIMIZATION
========================================== */

@media (max-width: 767px) {

    /* General */
    .container{
        padding-left:15px;
        padding-right:15px;
    }

    /* Hero */
    .dealer-hero{
        padding:120px 0 60px;
        text-align:center;
    }

    .dealer-hero h1{
        font-size:34px;
        line-height:1.2;
    }

    .dealer-hero p{
        font-size:15px;
        line-height:1.7;
        padding:0 10px;
    }

    .sub-title{
        letter-spacing:2px;
        font-size:12px;
    }

    .theme-btn{
        width:100%;
        max-width:250px;
    }

    /* Search Section */
    .dealer-search-section{
        margin-top:-30px;
    }

    .dealer-search-card{
        padding:20px;
        border-radius:20px;
    }

    .dealer-search-card .row > div{
        margin-bottom:15px;
    }

    .dealer-search-card .row > div:last-child{
        margin-bottom:0;
    }

    /* Section Titles */
    .section-title{
        margin-bottom:35px;
    }

    .section-title h1{
        font-size:28px;
        line-height:1.3;
    }

    .section-title p{
        font-size:14px;
    }

    /* Dealers */
    .dealers-section{
        padding:40px 0;
    }

    .dealer-card{
        margin-bottom:10px;
    }

    .dealer-image{
        height:220px;
    }

    .dealer-content{
        padding:20px;
        text-align:center;
    }

    .dealer-content h4{
        font-size:20px;
    }

    .dealer-contact{
        text-align:center;
    }

    .dealer-btn{
        width:100%;
        text-align:center;
    }

    /* Stats */
    .dealer-stats{
        padding:40px 0;
    }

    .stat-box{
        margin-bottom:20px;
        text-align:center;
    }

    .stat-box h2{
        font-size:36px;
    }

    /* Why Choose Us */
    .why-dealer{
        padding:40px 0;
    }


    /* Become Dealer */
    .become-dealer{
        padding:90px 0;
    }

    .dealer-form-wrapper{
        padding:25px 20px;
        border-radius:20px;
    }

    .dealer-form-wrapper .theme-btn{
        width:100%;
    }

    /* FAQ */
    .dealer-faq{
        padding:40px 0;
    }

    .accordion-button{
        font-size:15px;
        padding:18px;
    }

    /* CTA */
    .dealer-cta{
        padding:40px 0;
    }

    .cta-box{
        padding:40px 20px;
        border-radius:20px;
    }

    .cta-box h2{
        font-size:28px;
        line-height:1.3;
    }

    .cta-box p{
        font-size:14px;
    }

    .cta-box .theme-btn{
        width:100%;
        max-width:250px;
    }
}

@media (max-width: 767px){

    .why-dealer .row{
        justify-content:center;
    }

    .why-card{
        min-height:180px;
        padding:30px 20px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        border-radius:20px;
    }

    .why-card i{
        display:block;
        font-size:38px;
        margin-bottom:18px;
    }

    .why-card h4{
        margin:0;
        font-size:20px;
        line-height:1.4;
        text-align:center;
    }

    .why-dealer .col-lg-3,
    .why-dealer .col-md-6{
        margin-bottom:20px;
    }

}
@media (max-width: 767px){

    .why-dealer .container{
        padding-left:20px;
        padding-right:20px;
    }

    .why-dealer .row{
        margin-left:0 !important;
        margin-right:0 !important;
        justify-content:center;
    }

    .why-dealer .col-lg-3,
    .why-dealer .col-md-6{
        padding-left:0 !important;
        padding-right:0 !important;
        width:100%;
        max-width:100%;
    }

    .why-card{
        width:100%;
        max-width:100%;
        margin:0 auto;
    }
}


.success-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eaf8ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.success-icon i{
    font-size:48px;
    color:#28a745;
}

#successModal .modal-content{
    border-radius:20px;
}

#successModal h3{
    color:#003B73;
}

#successModal .btn{
    border-radius:50px;
    padding:12px 40px;
}