﻿/* ==========================================================
   VEHICLE REQUEST SECTION
========================================================== */


/* ===============================
        SECTION
================================ */

.vehicle-section {
    position: relative;
    width: 100%;
    margin-top: -10px;
    padding: 0 0 20px;
    z-index: 10;
}



.vehicle-card {
    width: 100%;
    padding: 30px 28px;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(255,255,255,.06), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}



/* ===============================
        HEADER
================================ */


.vehicle-header {
    margin-bottom: 25px;
}


    .vehicle-header h2 {
        margin: 0 0 8px;
        color: #ffffff;
        font-size: 24px;
        font-weight: 800;
    }


    .vehicle-header p {
        margin: 0;
        color: #AEB9CB;
        font-size: 14px;
    }



/* ===============================
        FORM GRID
================================ */


.vehicle-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}



/* ===============================
        INPUT BOX
================================ */


.vehicle-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}



    .vehicle-input label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #C9D4E5;
        font-size: 13px;
        font-weight: 600;
    }


        .vehicle-input label i {
            color: #2EE6D6;
            font-size: 15px;
        }



    /* ===============================
        SELECT BOX
================================ */


    .vehicle-input select {
        width: 100%;
        height: 58px;
        padding: 0 18px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(10,18,32,.75);
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        outline: none;
        cursor: pointer;
        backdrop-filter: blur(15px);
        transition: .3s ease;
    }


        .vehicle-input select:hover {
            border-color: rgba(46,230,214,.45);
        }



        .vehicle-input select:focus {
            border-color: #2EE6D6;
            box-shadow: 0 0 0 3px rgba(46,230,214,.12);
        }



        .vehicle-input select:disabled {
            opacity: .55;
            cursor: not-allowed;
        }



/* ===============================
        BUTTON
================================ */


.vehicle-next-btn {
    height: 58px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    border-radius: 14px;
    background: linear-gradient( 135deg, #2EE6D6, #08BFFF );
    color: #06131E;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(46,230,214,.20);
}



    .vehicle-next-btn i {
        font-size: 18px;
    }



    .vehicle-next-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(46,230,214,.35);
    }



/* ===============================
        FEATURES
================================ */


.vehicle-features {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}



.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}



    .feature-item i {
        width: 48px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 18px;
        color: #2EE6D6;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        transition: .35s;
    }



    .feature-item:hover i {
        transform: translateY(-3px);
        background: rgba(46,230,214,.12);
        border-color: rgba(46,230,214,.35);
        box-shadow: 0 0 20px rgba(46,230,214,.20);
    }



    .feature-item strong {
        display: block;
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 4px;
    }



    .feature-item span {
        display: block;
        color: #AEB9CB;
        font-size: 13px;
    }



/* ===============================
        RESPONSIVE
================================ */


@media(max-width:1200px) {

    .vehicle-form {
        grid-template-columns: repeat(2,1fr);
    }


    .vehicle-next-btn {
        grid-column: 1 / -1;
    }
}



@media(max-width:768px) {

    .vehicle-card {
        padding: 22px;
    }


    .vehicle-form {
        grid-template-columns: 1fr;
    }


    .vehicle-next-btn {
        width: 100%;
    }


    .vehicle-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}



@media(max-width:576px) {

    .vehicle-header h2 {
        font-size: 22px;
    }


    .vehicle-header p {
        font-size: 13px;
    }


    .vehicle-input select {
        height: 54px;
    }
}
