/* =========================================
   SAM DROP TAXI BOOKING
========================================= */

.sdt-booking {
    margin: 0 auto;
    background: #fff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
}


/* =========================================
   TABS
========================================= */

.sdt-tabs {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #FF3600;
}

.sdt-tab {
    flex: 1;
    height: 48px;
    border: 0;
    border-right: 1px solid #ddd;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.sdt-tab:last-child {
    border-right: 0;
}

.sdt-tab:hover {
    background: #fafafa;
}

.sdt-tab.active {
    background: #FF3600;
    color: #FFF;
}

.sdt-tab-icon {
    font-size: 21px;
    font-weight: 700;
    vertical-align: middle;
    margin-right: 7px;
}


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

#sdtBookingForm {
    padding: 24px 16px 10px;
}

.sdt-field {
    margin-bottom: 11px;
}

.sdt-field label {
    display: block;
    margin-bottom: 5px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

.sdt-field label span {
    color: #e32626;
    margin-left: 2px;
}

.sdt-field label small {
    font-size: 11px;
    font-weight: 500;
    color: #222;
}


/* =========================================
   INPUTS
========================================= */

.sdt-input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #d1d1d1;
    border-radius: 9px;
    background: #fff;
    color: #333;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sdt-input:focus {
    border-color: #FF3600;
    box-shadow: 0 0 0 2px rgba(255, 183, 25, 0.12);
}

.sdt-input::placeholder {
    color: #555;
}


/* =========================================
   MAPS
========================================= */

.sdt-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 5px 0 28px;
}

.sdt-map-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #eee;
}

.sdt-map {
    width: 100%;
    height: 100%;
}


/* MAP LINK */

.sdt-map-link {
    position: absolute;
    top: 9px;
    left: 9px;

    padding: 8px 12px;

    background: #fff;
    color: #0878e8;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 3px;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.sdt-map-link:hover {
    background: #f5f5f5;
}


/* =========================================
   EXTRA OPTIONS
========================================= */

.sdt-extra-options {
    display: none;
}

.sdt-extra-options.active {
    display: block;
}


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

.sdt-button-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
    margin-bottom: 0;
}

.sdt-estimate-btn {
    min-width: 133px;
    height: 36px;
    border: 0;
    border-radius: 7px;
    background: #808080;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}

.sdt-estimate-btn:hover {
    background: #FF3600;
}


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

@media (max-width: 600px) {

    .sdt-tabs {
        display: flex;
    }

    .sdt-tab {
        font-size: 12px;
        padding: 0 5px;
    }

    .sdt-tab-icon {
        font-size: 17px;
        margin-right: 3px;
    }

    #sdtBookingForm {
        padding: 20px 12px 10px;
    }

    .sdt-maps {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .sdt-map-wrapper {
        height: 230px;
    }

    .sdt-field label small {
        display: block;
        margin-top: 2px;
    }

    .sdt-button-row {
        justify-content: center;
    }

    .sdt-estimate-btn {
        width: 100%;
        height: 44px;
    }

}

.sdt-vehicle-results {
    margin-top: 25px;
}

.sdt-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sdt-vehicle-card {
    border: 1px solid #ddd;
    border-radius: 9px;
    padding: 10px 8px 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.sdt-vehicle-card::before {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #FF3600;
    margin: 0 auto 85px;
}

.sdt-vehicle-price {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sdt-vehicle-name {
    text-align: center;
    color: #555;
    margin-bottom: 14px;
}

.sdt-price-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 13px;
}

.sdt-price-row:last-of-type {
    border-bottom: none;
}

.sdt-price-note {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
    margin: 8px 0 10px;
}

.sdt-book-now {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: #ffb51b;
    color: #fff;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
}

.sdt-book-now:hover {
    background: #f0a900;
}

@media (max-width: 768px) {

    .sdt-vehicle-grid {
        grid-template-columns: 1fr;
    }

    .sdt-vehicle-card::before {
        margin-bottom: 40px;
    }
}