﻿/* ==========================================================
   QUICK OFFER CTA SECTION
   FINAL VERSION
========================================================== */


.quick-offer-section {
    position: relative;
    width: 100%;
    padding: 0 0 40px;
    margin-top: -85px;
}



/* ==========================================================
   MAIN BOX
========================================================== */


.quick-offer-box {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 145px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient( 110deg, rgba(18,28,45,.98), rgba(8,14,25,.98) );
    border: 1px solid rgba(0,255,255,.22);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}



    .quick-offer-box::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient( 120deg, transparent, rgba(0,255,255,.35), transparent );
        opacity: .35;
        pointer-events: none;
    }



/* ==========================================================
   CAR IMAGE AREA
========================================================== */


.quick-offer-car {
    position: relative;
    width: 330px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}



    .quick-offer-car::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(8,14,25,1) );
    }



    .quick-offer-car img {
        width: 390px;
        max-width: none;
        height: auto;
        object-fit: contain;
        transform: translateX(-25px);
        filter: drop-shadow( 0 15px 25px rgba(0,0,0,.65) );
    }



/* ==========================================================
   CONTENT AREA
========================================================== */


.quick-offer-content {
    position: relative;
    flex: 1;
    padding: 25px 35px;
}



.quick-offer-label {
    display: block;
    color: #00e5ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}



.quick-offer-content h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
}



.quick-offer-content p {
    color: #9db3c8;
    font-size: 15px;
    margin: 0;
}



/* ==========================================================
   BUTTON
========================================================== */


.quick-offer-button {
    padding-right: 35px;
}



    .quick-offer-button a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        min-width: 190px;
        padding: 16px 32px;
        border-radius: 50px;
        background: linear-gradient( 135deg, #35e6dc, #00bde8 );
        color: #041018;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(0,255,255,.25);
        transition: .35s ease;
    }



        .quick-offer-button a:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,255,255,.45);
        }



/* ==========================================================
   TESTIMONIAL - CTA GAP
========================================================== */


.testimonial-pagination {
    margin-top: 20px;
    margin-bottom: 5px;
}



/* ==========================================================
   RESPONSIVE
========================================================== */


@media(max-width:1300px) {

    .quick-offer-box {
        max-width: calc(100% - 40px);
    }
}



@media(max-width:992px) {


    .quick-offer-section {
        margin-top: -40px;
    }


    .quick-offer-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }



    .quick-offer-car {
        width: 100%;
        height: 120px;
    }



        .quick-offer-car img {
            width: 320px;
        }



    .quick-offer-content {
        padding: 15px;
    }



    .quick-offer-button {
        padding: 15px 0 0;
    }
}



@media(max-width:576px) {


    .quick-offer-content h3 {
        font-size: 22px;
    }


    .quick-offer-content p {
        font-size: 14px;
    }


    .quick-offer-button a {
        min-width: 160px;
        padding: 14px 22px;
    }
}
