/* ==========================
   TOUR BUILDER CONTAINER
========================== */

.form-container{
    width:100%;
    max-width:950px;
    margin:80px auto;
    padding:40px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.12);
    box-sizing:border-box;
    position:relative;
    z-index:2;
}

.form-container h2{
    text-align:center;
    color:#0d4d9c;
    margin-bottom:25px;
}

/* Progress */

.progress{
    width:100%;
    height:12px;
    background:#ddd;
    border-radius:30px;
    overflow:hidden;
    margin:25px 0 40px;
}

.progress-bar{
    height:100%;
    width:10%;
    background:#1e88e5;
    transition:.4s;
}


/* ==========================
   FORM
========================== */

#tourForm{
    width:100%;
}

.step{
    width:100%;
}

.step h2{
    text-align:center;
    margin-bottom:30px;
}

.step select,
.step input,
.step textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    font-size:16px;
    margin-bottom:20px;
    box-sizing:border-box;
}


/* ==========================
   BUTTONS
========================== */

.step button{

    background:#1e88e5;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    margin:8px 5px 0;
    transition:.3s;

}

.step button:hover{

    background:#1565c0;

}

.btn-group{

    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;

}


/* ==========================
   QUOTE TABLE
========================== */

.quote-box{

    width:100%;
    overflow-x:auto;

}

.quote-box table{

    width:100%;
    border-collapse:collapse;

}

.quote-box td{

    padding:10px;
    border-bottom:1px solid #eee;

}


/* ==========================
   MOBILE
========================== */

@media (max-width:992px){

.form-container{

    max-width:90%;
    padding:30px;

}

}

@media (max-width:768px){

.form-container{

    max-width:95%;
    padding:25px 20px;
    margin:50px auto;

}

.form-container h2{

    font-size:30px;

}

.step h2{

    font-size:26px;

}

.step button{

    width:100%;
    margin-top:12px;

}

.btn-group{

    flex-direction:column;

}

}

@media (max-width:576px){

.form-container{

    width:95%;
    padding:18px;
    border-radius:15px;

}

.form-container h2{

    font-size:24px;

}

.step h2{

    font-size:22px;

}

.step select,
.step input,
.step textarea{

    font-size:15px;
    padding:12px;

}

.progress{

    height:10px;

}

}
/* Attractions */

.form-container .attraction-item{
    margin:12px 0;
}

.form-container .attraction-item label{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
    cursor:pointer;
    transition:.3s ease;
}

.form-container .attraction-item label:hover{
    border-color:#0d6efd;
    background:#f7fbff;
}

.form-container .attraction-item input{
    width:20px;
    height:20px;
    accent-color:#0d6efd;
}

.form-container .attraction-item span{
    flex:1;
    font-size:17px;
    font-weight:500;
}

.form-container .attraction-item strong{
    color:#0d6efd;
    font-size:17px;
}

.form-container .btn-group{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
}