/* ==========================================
   Mile High Booking Wizard
========================================== */

.mht-booking{
    max-width:1000px;
    margin:60px auto;
    background:#fff;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    overflow:hidden;
}

/* Header */

.mht-header{
    padding:40px;
    border-bottom:1px solid #ececec;
}

.mht-header h2{
    margin:0;
    font-size:34px;
    font-weight:700;
    color:#222;
}

.mht-header p{
    margin-top:10px;
    color:#777;
}

/* =========================================
   Progress
========================================= */

.mht-progress{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    padding:25px 35px;
    background:#FAFAFA;
    border-bottom:1px solid #ECECEC;
    flex-wrap:wrap;
}

.mht-step{
    flex:1;
    text-align:center;
    padding:10px 16px;
    border-radius:30px;
    background:#F3F3F3;
    color:#888;
    font-size:14px;
    font-weight:600;
    transition:all .25s ease;
    white-space:nowrap;
}

/*
=========================================
Current Step
=========================================
*/

.mht-step.active{

    background:#F4B400;
    color:#0B2341;
    font-weight:700;
    box-shadow:0 3px 8px rgba(0,0,0,.15);
}

/*
=========================================
Completed Steps
=========================================
*/

.mht-step.complete{
    background:#2E7D32;
    color:#FFF;
    font-weight:700;
}

.mht-step.complete::before{
    content:"✓ ";
    font-weight:700;
}

/* Content */

.mht-content{
    min-height:420px;
    padding:50px;
}

.mht-content h3{
    margin-top:0;
}

.mht-content p{
    color:#666;
}

/* Footer */

.mht-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 40px;
    border-top:1px solid #ececec;
}

/* Buttons */

.mht-btn{
    padding:14px 30px;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:.25s;
}

.mht-btn:hover{
    transform:translateY(-2px);
}

.mht-btn.primary{
    background:#F4B400;
    color:#111;
    font-weight:bold;
}

.mht-btn.primary:hover{
    background:#E3A700;
}

.mht-btn.secondary{
    background:#eeeeee;
    color:#444;
}

.mht-btn.secondary:hover{
    background:#dddddd;
}

/*
=========================================
Form Controls
=========================================
*/

.mht-form-group input,
.mht-form-group select,
.mht-form-group textarea{
    width:100%;
    max-width:320px;
    height:52px;
    padding:0 16px;
    border:1px solid #D9D9D9;
    border-radius:8px;
    font-size:16px;
    font-family:inherit;
    box-sizing:border-box;
    transition:.2s ease;
}

.mht-form-group input:focus,
.mht-form-group select:focus,
.mht-form-group textarea:focus{
    border-color:#F4B400;
    outline:none;
    box-shadow:0 0 0 3px rgba(244,180,0,.20);
}

/* ===========================
   Form
=========================== */

.mht-form-group{
    margin-top:30px;
}

.step-page button{
    margin-top:16px;
}

.mht-form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.mht-message{
    margin-top:25px;
    font-weight:600;
}

/* ==========================================
   ZIP Results
========================================== */

.mht-success{
    margin-top:30px;
    padding:25px;
    background:#eaf8ea;
    border-left:5px solid #2e7d32;
    border-radius:8px;
}

.mht-success h3{
    margin-top:0;
    color:#2e7d32;
}

.mht-warning{
    margin-top:30px;
    padding:25px;
    background:#fff8e1;
    border-left:5px solid #f4b400;
    border-radius:8px;
}

.mht-warning h3{
    margin-top:0;
    color:#9a6700;
}

.mht-warning-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

/* =========================================
   Package Cards
========================================= */

.mht-packages {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.mht-package {
    flex:1;
    border:2px solid #d9d9d9;
    border-radius:12px;
    padding:25px;
    cursor:pointer;
    background:#fff;
    transition:all .25s ease;
    position:relative;
}

.mht-package:hover {
    border-color:#F4B400;
    background:#FFFBEA;
    transform:translateY(-8px);
    box-shadow:
        0 12px 30px rgba(244,180,0,.20);
}

.mht-package.selected {
    border: 3px solid #F4B400 !important;
    background: #FFF8DD !important;
    box-shadow: 0 16px 40px rgba(244,180,0,.30);
}

.mht-package .price {
    font-size:34px;
    font-weight:700;
    transition:.25s;
}

.mht-package:hover .price{
    color:#F4B400;
}

.mht-package .popular {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #F4B400;
    color: #111;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.mht-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
    transform:none;
}

/*
=========================================
Dates
=========================================
*/

.mht-date-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:25px;
}

.mht-date-row .mht-form-group{
    margin-bottom:0;
}

/*
=========================================
Rental Length
=========================================
*/

#mht-rental-length,
#rental-length{
    font-size:22px;
    font-weight:700;
    color:#0B2341;
    margin-top:8px;
}

/*
=========================================
Extension Cards
=========================================
*/

.mht-extension-options{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:15px;
}

.mht-extension-card{
    border:2px solid #DDD;
    border-radius:12px;
    padding:20px;
    text-align:center;
    cursor:pointer;
    transition:.25s ease;
}

.mht-extension-card:hover{
    transform:translateY(-5px);
    border-color:#F4B400;
    background:#FFF8DD;
}

.mht-extension-card.selected{
    border:3px solid #F4B400;
    background:#FFF8DD;
    box-shadow:0 16px 40px rgba(244,180,0,.30);
}

.mht-extension-card h4{
    margin:0 0 10px;
    font-size:22px;
    color:#0B2341;
}

.mht-extension-card p{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#555;
}

/*
=========================================
Responsive
=========================================
*/

@media(max-width:900px){
    .mht-date-row{
        grid-template-columns:1fr;
    }
    .mht-extension-options{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .mht-extension-options{
        grid-template-columns:1fr;
    }
}

/*
=========================================
Extras
=========================================
*/

.mht-extras-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin:35px 0;
}

.mht-extra-card{
    border:2px solid #D9D9D9;
    border-radius:12px;
    padding:25px;
    background:#FFF;
    transition:.25s ease;
}

.mht-extra-card.selected{
    border:3px solid #F4B400;
    background:#FFF8DD;
    box-shadow:0 16px 40px rgba(244,180,0,.25);
}

.mht-extra-icon{
    font-size:42px;
    margin-bottom:15px;
}

.mht-extra-card h3{
    margin:0 0 12px;
    color:#0B2341;
}

.mht-extra-card p{
    min-height:60px;
    color:#666;
    margin-bottom:20px;
}

.mht-extra-price{
    font-size:26px;
    font-weight:700;
    color:#0B2341;
    margin-bottom:25px;
}

.mht-qty-label{
    text-align:center;
    font-size:14px;
    font-weight:800;
    color:#666;
    margin-bottom:10px;
}

.mht-qty{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:12px;
}

.mht-qty button{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:none;
    background:#F4B400;
    color:#111;
    font-size:26px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
    padding:0;
    margin:0;
    line-height:1;
}

.qty-minus{
    border-radius:8px 0 0 8px;
}

.qty-plus{
    border-radius:0 8px 8px 0;
}

.qty-value{
    width:58px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#FFF;
    border-top:2px solid #D9D9D9;
    border-bottom:2px solid #D9D9D9;
    font-size:24px;
    font-weight:700;
    color:#0B2341;
    margin:0;
}

.price-total{
    margin-top:16px;
    text-align:center;
    font-size:20px;
    font-weight:700;
    color:#0B2341;
}

.price-total span{
    color:#F4B400;
}

@media(max-width:900px){
    .mht-extras-grid{
        grid-template-columns:1fr;
    }
}

/*
=========================================
Customer Information
=========================================
*/

.mht-section{
    border:1px solid #E5E5E5;
    border-radius:12px;
    margin-bottom:25px;
    overflow:hidden;
    background:#FFF;
}

.mht-section-header{
    display:grid;
    grid-template-columns:30px 220px 1fr;
    align-items:center;
    column-gap:18px;
    padding:20px 25px;
    background:#F8F8F8;
    cursor:pointer;
}

.mht-section-header h3{
    margin:0;
    font-size:22px;
    color:#0B2341;
}

.mht-section-arrow{
    font-size:18px;
    transition:.25s ease;
}

.mht-section.active .mht-section-arrow{
    transform:rotate(0deg);
}

.mht-section:not(.active) .mht-section-arrow{
    transform:rotate(-90deg);
}

.mht-section-body{
    padding:30px;
}

.mht-section:not(.active) .mht-section-body{
    display:none;
}

.mht-section.active{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mht-two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.mht-three-column{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:20px;
    max-width:520px;
}

.mht-checkbox{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:30px;
    font-weight:600;
}

.mht-checkbox input{
    width:20px;
    height:20px;
}

.mht-section-body .mht-btn{
    margin-top:30px;
}

#multi-floor-options{
    display:none;
    margin-top:25px;
}

.mht-error{
    border:2px solid #D32F2F !important;
    box-shadow:0 0 0 3px rgba(211,47,47,.15);
}

.mht-error-message{
    color:#D32F2F;
    font-size:13px;
    margin-top:6px;
    font-weight:500;
}

.mht-section-title{
    display:block;
}

.mht-section-summary{
    display:none;
    padding:0;
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.45;
}

.mht-section.complete .mht-section-summary{
    display:block;
}

.mht-section.active .mht-section-summary{
    display:none;
}

@media(max-width:900px){
    .mht-two-column,
    .mht-three-column{
        grid-template-columns:1fr;
    }
}

/*
=========================================
Section Icons
=========================================
*/

.mht-section-arrow{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#0B2341;
    flex-shrink:0;
}

.mht-section-arrow.completed{
    background:#34A853;
    color:#fff;
    border-radius:50%;
    font-size:16px;
    font-weight:700;
    transform:none !important;
}

/*
=========================================
Review Page
=========================================
*/

.mht-review-card{
    border:1px solid #E5E5E5;
    border-radius:12px;
    padding:25px;
    margin-bottom:25px;
    background:#FFF;
}

.mht-review-card h3{
    margin:0 0 20px;
    color:#0B2341;
    font-size:22px;
}

.mht-review-card p{
    margin:8px 0;
    color:#555;
    line-height:1.6;
}

.mht-review-total{
    display:flex;
    justify-content:space-between;
    font-size:18px;
    margin:10px 0;
}

.mht-review-grand-total{
    display:flex;
    justify-content:space-between;
    font-size:24px;
    font-weight:700;
    border-top:2px solid #DDD;
    margin-top:20px;
    padding-top:20px;
}

/*
=========================================
Review Rows
=========================================
*/

.mht-review-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    padding:10px 0;
    border-bottom:1px solid #EFEFEF;
}

.mht-review-row:last-child{
    border-bottom:none;
}

.mht-review-label{
    font-weight:600;
    color:#0B2341;
    min-width:170px;
}

.mht-review-value{
    flex:1;
    text-align:right;
    color:#555;
    line-height:1.5;
}

.mht-review-grand-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    padding-top:20px;
    border-top:2px solid #DDD;
    font-size:24px;
    font-weight:700;
}

/*
=========================================
Pricing Disclaimer
=========================================
*/

.mht-pricing-disclaimer{
    margin-top:20px;
    padding:18px;
    background:#FFFBEA;
    border-left:4px solid #F4B400;
    border-radius:8px;
    font-size:14px;
    line-height:1.7;
    color:#555;
}

/*
=========================================
Review Agreement
=========================================
*/

.mht-agreement{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mht-review-buttons{
    display:flex;
    justify-content:space-between;
    margin-top:35px;
}

.mht-checkbox{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:10px;
}

.mht-checkbox:last-child{
    margin-bottom:0;
}

.mht-checkbox input{
    flex-shrink:0;
    width:20px;
    height:20px;
    margin-top:3px;
}

.mht-contact-link{
    color:#0B2341;
    font-weight:700;
    text-decoration:none;
}

.mht-contact-link:hover{
    color:#F4B400;
    text-decoration:underline;
}

/*
=========================================
Review Card Header
=========================================
*/

.mht-review-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.mht-review-card-header h3{
    margin:0;
}

.mht-review-edit{
    background:none;
    border:none;
    padding:0;
    margin:0;
    color:#0B2341;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.mht-review-edit:hover{
    color:#F4B400;
    text-decoration:underline;
}

/*
=========================================
Step Navigation
=========================================
*/

.mht-step-buttons{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:40px;
}

/*
=========================================
Page Back Button
=========================================
*/

.mht-page-back{
    margin-top:35px;
    display:flex;
    justify-content:flex-start;
}

/*
=========================================
Success Page
=========================================
*/

.mht-success-page{
    text-align:center;
    max-width:700px;
    margin:0 auto;
}

.mht-success-icon{
    font-size:72px;
    margin-bottom:20px;
}

.mht-success-next,
.mht-success-contact{
    margin-top:40px;
    padding:25px;
    background:#F8F8F8;
    border-radius:12px;
    text-align:left;
}