/* =========================================
   SKS DEALER DOWNLOAD SECTION
========================================= */

.sks-dealer-download-section{
    background: #f8faf7;
}

.sks-dealer-download-wrapper{
    background: linear-gradient(135deg,#0c5c3b,#16784f);
    border-radius: 30px;
    padding: 50px 55px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

/* Decorative Glow */
.sks-dealer-download-wrapper::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(182,141,64,0.12);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

/* Badge */
.sks-dealer-badge{
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #f0d28a;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Title */
.sks-dealer-title{
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

/* Text */
.sks-dealer-text{
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.9;
    margin-top: 18px;
    max-width: 700px;
}

/* Download Button */
.sks-dealer-download-btn{
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 18px 28px;
    border-radius: 18px;
    text-decoration: none;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sks-dealer-download-btn:hover{
    transform: translateY(-5px);
    background: #b68d40;
}

.sks-dealer-download-btn:hover .sks-dealer-btn-content strong,
.sks-dealer-download-btn:hover .sks-dealer-btn-content small,
.sks-dealer-download-btn:hover .sks-dealer-btn-icon i{
    color: #fff;
}

/* Icon */
.sks-dealer-btn-icon{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(12,92,59,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.sks-dealer-btn-icon i{
    font-size: 24px;
    color: #0c5c3b;
    transition: .3s ease;
}

/* Button Content */
.sks-dealer-btn-content{
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.sks-dealer-btn-content small{
    color: #777;
    font-size: 13px;
    transition: .3s ease;
}

.sks-dealer-btn-content strong{
    color: #0c5c3b;
    font-size: 22px;
    font-weight: 800;
    transition: .3s ease;
}

/* Responsive */
@media(max-width:991px){

    .sks-dealer-download-wrapper{
        padding: 40px 35px;
    }

    .sks-dealer-title{
        font-size: 34px;
    }

}

@media(max-width:767px){

    .sks-dealer-download-wrapper{
        padding: 30px 25px;
        border-radius: 24px;
    }

    .sks-dealer-title{
        font-size: 28px;
    }

    .sks-dealer-download-btn{
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

}