/* ==========================
   Booking Form
========================== */

.atb-booking-wrapper{
    max-width:450px;
    margin:40px auto;
    padding:30px;
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.atb-header{
    margin:-30px -30px 30px;
    padding:20px 30px;
    background:#0a8f4d;
    border-radius:16px 16px 0 0;
}

.atb-header h2{
    margin:0;
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.atb-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:20px;
    margin-bottom:10px;
}

.atb-col{
    display:flex;
    flex-direction:column;
    margin-bottom:10px;
}

.atb-col.atb-full{
    grid-column:1 / -1;
}

.atb-col label{
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#444;
}

.atb-col input{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
    box-sizing:border-box;
    background:#fff;
}

.atb-col textarea{
    width:100%;
    min-height:120px;
    padding:15px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    font-size:15px;
    font-family:inherit;
    transition:.3s;
    box-sizing:border-box;
    background:#fff;
    resize:vertical;
}

#atb-note-counter{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:#777;
}

.atb-col input:focus,
.atb-col textarea:focus{
    outline:none;
    border-color:#0a8f4d;
    box-shadow:0 0 0 3px rgba(10,143,77,.15);
}

.atb-col input[readonly]{
    background:#f7f7f7;
    color:#666;
}

.atb-price-field{
    display:flex;
    align-items:center;
    border:1px solid #dcdcdc;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.atb-price-field span{
    width:55px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0a8f4d;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.atb-price-field input{
    border:none;
    border-radius:0;
    height:50px;
}

.atb-price-field input:focus{
    box-shadow:none;
}

.atb-btn{
    width:100%;
    height:55px;
    margin-top:10px;
    border:none;
    border-radius:10px;
    background:#0a8f4d;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.atb-btn:hover{
    background:#066f3b;
    transform:translateY(-2px);
}

/* ==========================
   Success Popup
========================== */

.atb-success-popup{
    text-align:center;
    padding:35px 30px;
}

.atb-success-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#e9f9ef;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.atb-success-popup h2{
    margin:0 0 12px;
    color:#0a8f4d;
    font-size:28px;
}

.atb-success-text{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.atb-booking-reference{
    background:#f8f8f8;
    border:2px dashed #0a8f4d;
    border-radius:12px;
    padding:18px;
    margin:25px 0;
}

.atb-booking-reference span{
    display:block;
    color:#666;
    margin-bottom:8px;
    font-size:14px;
}

.atb-booking-reference h3{
    margin:0;
    font-size:30px;
    color:#0a8f4d;
    letter-spacing:2px;
}

.atb-success-info{
    text-align:left;
    background:#f9f9f9;
    border-radius:10px;
    padding:18px;
    margin-bottom:20px;
}

.atb-success-info p{
    margin:8px 0;
}

.atb-contact-box{
    background:#0a8f4d;
    color:#fff;
    border-radius:10px;
    padding:18px;
    margin-bottom:25px;
}

.atb-contact-box strong{
    display:block;
    margin-bottom:10px;
    font-size:18px;
}

.atb-contact-box p{
    margin:8px 0;
}

/* ==========================
   Responsive
========================== */

@media (max-width:768px){

    .atb-booking-wrapper{
        padding:20px;
    }

    .atb-header{
        margin:-20px -20px 20px;
        padding:18px 20px;
    }

    .atb-header h2{
        font-size:22px;
    }

    .atb-row{
        grid-template-columns:1fr;
        gap:16px;
    }
}



/* ===========================
   ATB Pagination
=========================== */


.atb-pagination{
    background:red !important;
    padding:20px !important;
}