/* ======= SECTION BACKGROUND ======= */

.ab-container{
    max-width:1300px;
    margin:20px auto;
    padding:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
    border-radius:25px;
    overflow:hidden;
    position:relative;
}

.ab-container::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:#0d6efd15;
    border-radius:50%;
    top:-120px;
    right:-80px;
}

.ab-container::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:#ffc10718;
    border-radius:50%;
    bottom:-120px;
    left:-60px;
}

/* ======= LEFT CONTENT ======= */

.ab-left{
    flex:1;
    position:relative;
    z-index:2;
}

.ab-badge{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.ab-left h1{
    font-size:48px;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
    font-weight:800;
}

.ab-left p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.ab-feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:16px 18px;
    margin-bottom:15px;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    transition:.3s;
    font-size:15px;
    font-weight:500;
}

.ab-feature:hover{
    transform:translateX(8px);
    box-shadow:0 10px 30px rgba(13,110,253,.12);
}

/* ======= FORM CARD ======= */

.ab-right{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
    z-index:2;
}

.ab-booking-form{
    width:100%;
    max-width:470px;
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.08),
        0 5px 15px rgba(0,0,0,.05);
}

.ab-booking-form h2{
    text-align:center;
    margin-bottom:30px;
    font-size:28px;
    font-weight:700;
    color:#222;
}

/* ======= LABEL ======= */

.ab-booking-form label{
    display:block;
    margin-bottom:8px;
    color:#444;
    font-size:14px;
    font-weight:600;
}

/* ======= INPUT ======= */

.ab-booking-form input,
.ab-booking-form select{

    width:100%;
    height:52px;

    padding:0 18px;

    border:1px solid #e3e3e3;

    border-radius:10px;

    margin-bottom:18px;

    font-size:15px;

    background:#fafafa;

    transition:.3s;

    box-sizing:border-box;

}

.ab-booking-form input:hover,
.ab-booking-form select:hover{

    border-color:#0d6efd60;

}

.ab-booking-form input:focus,
.ab-booking-form select:focus{

    outline:none;

    background:#fff;

    border-color:#0d6efd;

    box-shadow:0 0 0 4px rgba(13,110,253,.10);

}

/* ======= AVAILABLE AUTOS ======= */

#available_autos{

    display:block;

    padding:15px;

    margin-bottom:20px;

    background:#eef7ff;

    border-left:5px solid #0d6efd;

    border-radius:10px;

    color:#0d6efd;

    font-weight:700;

    text-align:center;

}

/* ======= BUTTON ======= */

.ab-booking-form button{

    width:100%;

    height:56px;

    border:none;

    border-radius:12px;

    background:linear-gradient(90deg,#0d6efd,#2563eb);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 10px 25px rgba(13,110,253,.25);

}

.ab-booking-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(13,110,253,.35);

}

/* ======= MOBILE ======= */

@media(max-width:992px){

.ab-container{

    flex-direction:column;

    padding:35px;

    gap:40px;

}

.ab-left{

    text-align:center;

}

.ab-left h1{

    font-size:34px;

}

.ab-feature{

    justify-content:center;

}

.ab-booking-form{

    max-width:100%;

}

}

@media(max-width:576px){

.ab-container{

    padding:20px;

}

.ab-left h1{

    font-size:28px;

}

.ab-booking-form{

    padding:25px;

}

.ab-booking-form h2{

    font-size:22px;

}

}

