/* Removal Booking Frontend Styles */

.removal-booking-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.removal-booking-form {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.step-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

/* Date & Time Section - Clean Modern Design */
.datetime-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.datetime-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.datetime-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f 0%, #ffd700 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.datetime-card:hover {
    border-color: #1e3a5f;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.1);
    transform: translateY(-3px);
}

.datetime-card:hover::before {
    transform: scaleX(1);
}

.datetime-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.datetime-card:hover .datetime-icon {
    transform: scale(1.1);
    opacity: 1;
}

.datetime-card .form-group {
    margin: 0;
}

.datetime-card label {
    color: #1e3a5f;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.datetime-card input[type="date"],
.datetime-card input[type="time"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    color: #333;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    position: relative;
    z-index: 1;
}

.datetime-card input[type="date"]::placeholder,
.datetime-card input[type="time"]::placeholder {
    color: #999;
    opacity: 0.7;
}

.datetime-card input[type="date"]:hover,
.datetime-card input[type="time"]:hover {
    background: #fff;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.05);
}

.datetime-card input[type="date"]:focus,
.datetime-card input[type="time"]:focus {
    outline: none;
    background: #fff;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.datetime-card input[type="date"]::-webkit-calendar-picker-indicator,
.datetime-card input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    border-radius: 4px;
    padding: 6px;
    opacity: 0.7;
    transition: all 0.2s;
    width: 24px;
    height: 24px;
}

.datetime-card input[type="date"]::-webkit-calendar-picker-indicator:hover,
.datetime-card input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    background: rgba(30, 58, 95, 0.15);
    transform: scale(1.1);
}

/* Custom Calendar Popup Styling */
input[type="date"]::-webkit-datetime-edit {
    padding: 0;
    color: #333;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #666;
    padding: 0 4px;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #333;
    padding: 0 2px;
}

input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background-color: rgba(30, 58, 95, 0.1);
    color: #1e3a5f;
    outline: none;
}

/* Time Input Styling */
input[type="time"]::-webkit-datetime-edit {
    padding: 0;
    color: #333;
}

input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="time"]::-webkit-datetime-edit-text {
    color: #666;
    padding: 0 4px;
}

input[type="time"]::-webkit-datetime-edit-hour-field,
input[type="time"]::-webkit-datetime-edit-minute-field {
    color: #333;
    padding: 0 2px;
}

input[type="time"]::-webkit-datetime-edit-hour-field:focus,
input[type="time"]::-webkit-datetime-edit-minute-field:focus {
    background-color: rgba(30, 58, 95, 0.1);
    color: #1e3a5f;
    outline: none;
}

/* Hide AM/PM field - Force 24-hour format */
input[type="time"]::-webkit-datetime-edit-ampm-field {
    display: none;
}

/* Ensure 24-hour format */
input[type="time"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

/* For Firefox */
input[type="time"]::-moz-placeholder {
    color: #999;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .datetime-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .datetime-card {
        padding: 25px 20px;
    }
}

/* Pricing Options */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-card {
    background: #1e3a5f;
    color: #ffd700;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.pricing-card.selected {
    border: 3px solid #ffd700;
}

.pricing-card h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #ffd700;
}

.pricing-card .subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-book-now {
    background: #ffd700;
    color: #1e3a5f;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-book-now:hover {
    background: #ffed4e;
}

/* Van Selection */
.van-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.van-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.van-card:hover {
    border-color: #1e3a5f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.van-card.selected {
    border-color: #ffd700;
    background: #fffef0;
}

.van-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.van-image-container {
    margin: 20px 0;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.van-image {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.van-icon {
    font-size: 48px;
    margin: 15px 0;
}

.van-measurements {
    text-align: left;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.btn-select-van {
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-select-van:hover {
    background: #2a4d7a;
}

/* Crew Selection - NO PRICING */
.crew-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.crew-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.crew-card:hover {
    border-color: #1e3a5f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.crew-card.selected {
    border-color: #ffd700;
    background: #fffef0;
}

.crew-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.crew-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.btn-select-crew {
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-select-crew:hover {
    background: #2a4d7a;
}
.btn-select-service {
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-select-service:hover {
    background: #2a4d7a;
}
/* Address Section */
.address-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.address-section h3 {
    margin-top: 0;
    color: #1e3a5f;
}

/* Address Input Wrapper for Autocomplete */
.address-input-wrapper {
    position: relative;
    width: 100%;
}

/* Clear Button (×) */
.address-clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: none;
    z-index: 10;
    transition: all 0.2s;
    padding: 0;
}

.address-clear-btn:hover {
    background: #c82333;
    transform: translateY(-50%) scale(1.1);
}

/* Autocomplete Dropdown */
.address-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #1e3a5f;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 400px; /* Increased for more results visibility */
    overflow-y: auto; /* Enable vertical scroll */
    overflow-x: hidden; /* Hide horizontal scroll */
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    margin-top: -2px;
}

/* Custom scrollbar styling for dropdown */
.address-autocomplete-dropdown::-webkit-scrollbar {
    width: 8px;
}

.address-autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 5px 0;
}

.address-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #1e3a5f;
    border-radius: 4px;
}

.address-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #2a4d7a;
}

/* Result count header */
.autocomplete-header {
    padding: 8px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-size: 12px;
    color: #666;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.autocomplete-header small {
    font-weight: 600;
    color: #1e3a5f;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
    border-radius: 0 0 5px 5px;
}

.autocomplete-item:hover,
.autocomplete-item.selected {
    background: #e8f4f8;
}

.autocomplete-item strong {
    color: #1e3a5f;
    font-weight: 600;
}

.autocomplete-loading,
.autocomplete-error {
    padding: 12px 15px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.autocomplete-error {
    color: #dc3545;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1e3a5f;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #1e3a5f;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.address-group {
    margin-bottom: 25px;
}

.address-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1e3a5f;
}

.address-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.address-group input[type="text"]:focus {
    outline: none;
    border-color: #1e3a5f;
}

.floor-selection {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    margin-top: 10px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.form-group select:focus {
    outline: none;
    border-color: #1e3a5f;
}

.floor-selection select {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}

.lift-option {
    margin-top: 10px;
}

.lift-option label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-via, .btn-remove-via {
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-add-via:hover, .btn-remove-via:hover {
    background: #2a4d7a;
}

/* Items Section */
.items-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.items-search input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

.popular-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.popular-item {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.popular-item:hover {
    background: #1e3a5f;
    color: #fff;
}

.my-items-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.my-items-list h3 {
    margin-top: 0;
    color: #1e3a5f;
}

.item-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 5px;
}

.item-list-item .item-name {
    flex: 1;
}

.item-list-item .item-quantity {
    margin: 0 15px;
}

.item-list-item .item-actions button {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

/* Date/Time Section */
.datetime-section {
    margin-bottom: 30px;
}

.datetime-section input[type="date"],
.datetime-section input[type="time"],
.datetime-section input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

.price-display {
    background: #1e3a5f;
    color: #ffd700;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
}

.price-display h3 {
    margin: 0;
    font-size: 24px;
}

/* Customer Details */
.customer-details {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1e3a5f;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
}

.booking-summary {
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 30px;
}

.booking-summary h3 {
    margin-top: 0;
    color: #1e3a5f;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.btn-prev-step, .btn-next-step, .btn-submit-booking {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-prev-step {
    background: #6c757d;
    color: #fff;
}

.btn-prev-step:hover {
    background: #5a6268;
}

.btn-next-step, .btn-submit-booking {
    background: #ffd700;
    color: #1e3a5f;
}

.btn-next-step:hover, .btn-submit-booking:hover {
    background: #ffed4e;
}

.step-indicator {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

/* Messages */
.booking-message {
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.booking-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Service Type Selection */
.service-types-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-type-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.service-type-card:hover {
    border-color: #1e3a5f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-type-card.selected {
    border-color: #ffd700;
    background: #fffef0;
}

.service-type-card h3 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.service-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Additional Services */
.additional-services-section {
    margin-top: 20px;
}

.service-item {
    padding: 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: #1e3a5f;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
}

.service-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.sub-options-container {
    background: #f9f9f9;
    padding: 15px;
    border-left: 3px solid #1e3a5f;
    border-radius: 5px;
}

.sub-options-title {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.sub-option-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 15px;
}

.sub-option-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Packing Materials */
.packing-materials-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.packing-material-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.packing-material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f 0%, #2d5a8f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.packing-material-card:hover {
    border-color: #1e3a5f;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.15);
    transform: translateY(-2px);
}

.packing-material-card:hover::before {
    transform: scaleX(1);
}

.packing-material-card.selected {
    border-color: #1e3a5f;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.packing-material-card.selected::before {
    transform: scaleX(1);
}

.packing-material-header {
    width: 100%;
    margin-bottom: 10px;
}

.packing-material-name {
    margin: 0 0 12px 0;
    color: #1e3a5f;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    min-height: auto;
    display: block;
    text-align: center;
    word-wrap: break-word;
    padding: 0 4px;
}

.packing-material-price-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.packing-material-price-info .price {
    font-size: 20px;
    font-weight: bold;
    color: #1e3a5f;
}

.packing-material-price-info .unit {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.packing-material-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #1e3a5f;
    background: #fff;
    color: #1e3a5f;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.quantity-btn:hover {
    background: #1e3a5f;
    color: #fff;
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-minus {
    border-color: #dc3545;
    color: #dc3545;
}

.quantity-minus:hover {
    background: #dc3545;
    color: #fff;
}

.quantity-plus {
    border-color: #28a745;
    color: #28a745;
}

.quantity-plus:hover {
    background: #28a745;
    color: #fff;
}

.packing-quantity-input {
    width: 60px;
    height: 36px;
    padding: 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #1e3a5f;
    background: #fff;
    cursor: default;
}

.packing-quantity-input:focus {
    border-color: #1e3a5f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.packing-material-card.selected .packing-quantity-input {
    border-color: #1e3a5f;
    background: #fff;
}

.step-description {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Booking Summary */
.booking-summary {
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 20px;
}

.booking-summary h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
    font-size: 22px;
}

.summary-content {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
}

.summary-section {
    line-height: 1.8;
}

.summary-item {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #1e3a5f;
    display: inline-block;
    min-width: 150px;
}

.summary-item ul {
    margin: 10px 0 0 150px;
    list-style: disc;
}

.price-breakdown {
    background: #fffef0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    border-left: 4px solid #ffd700;
}

.price-breakdown h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.price-item {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
}

.total-price-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.total-price-section h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

#display_total_price {
    font-weight: 700;
    font-size: 36px;
    color: #ffd700;
    display: block;
    margin-top: 5px;
}

/* Professional Price Breakdown */
.price-breakdown-section {
    margin-top: 25px;
}

.breakdown-title {
    color: #1e3a5f;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f0f8;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s;
}

.breakdown-row:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.breakdown-label {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.breakdown-value {
    color: #1e3a5f;
    font-size: 16px;
    font-weight: 600;
}

.breakdown-total {
    background: #f8f9fa;
    margin-top: 10px;
    padding: 18px 20px;
    border-radius: 10px;
}

.breakdown-total .breakdown-label {
    color: black;
    font-size: 18px;
    font-weight: 700;
}

.breakdown-total .breakdown-value {
    color: black;
    font-size: 22px;
    font-weight: 700;
}

.breakdown-loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.summary-section {
    line-height: 1.8;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    padding: 12px 0;
    border-bottom: 1px solid #e8f0f8;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #1e3a5f;
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
}

.summary-item ul {
    margin: 8px 0 0 0;
    list-style: none;
    padding-left: 0;
    flex: 1;
}

.summary-item ul li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    text-align: right;
}

.summary-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.btn-confirm {
    background: #28a745 !important;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.btn-confirm:hover {
    background: #218838 !important;
}

.btn-confirm:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading Spinner */
.spinner {
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    border-top-color: #fff !important;
    animation: spin 0.8s linear infinite !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-submit-booking .spinner,
.btn-confirm .spinner {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.dartford-bridge-warning{
    color: #d32f2f;
    font-size: 10px;
    font-weight: 600;
    
}
.btn-submit-booking.loading,
.btn-confirm.loading {
    opacity: 0.8 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.btn-submit-booking.loading:hover,
.btn-confirm.loading:hover {
    background: #1e3a5f !important;
    transform: none !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Terms and Conditions Section */
.terms-conditions-section {
    /* margin: 30px 0; */
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 0;
}

.terms-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.terms-checkbox-label span {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.terms-checkbox-label a {
    color: #1e3a5f;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-checkbox-label a:hover {
    color: #0f2442;
}

.terms-error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 8px;
    margin-left: 28px;
    padding: 8px 12px;
    background: #ffebee;
    border-radius: 4px;
    border-left: 3px solid #d32f2f;
    display: none;
}

/* Step Error Message - Unified error display for all steps */
.step-error-message {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    color: #d32f2f;
    background-color: #ffebee;
    border: 1px solid #d32f2f;
    padding: 12px 15px;
    border-radius: 4px;
    margin: 20px 0;
    font-weight: 500;
    font-size: 14px;
    border-left: 3px solid #d32f2f;
    animation: slideDown 0.3s ease-out;
}

.step-error-message.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-step.has-error {
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 5px;
}

/* Need Packing Materials Checkbox */
#need_packing_materials {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 10px;
    accent-color: #1e3a5f;
}

#need_packing_materials + span {
    color: #1e3a5f;
    font-weight: 600;
    font-size: 16px;
    user-select: none;
}

.checkbox-label {
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    opacity: 0.8;
}

#packing_materials_container {
    margin-top: 20px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-conditions-section.has-error {
    border-color: #d32f2f;
    background: #fff5f5;
}

.terms-conditions-section.has-error .terms-checkbox-label {
    color: #d32f2f;
}

/* Hours Input Section */
#hours_input_section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #1e3a5f;
}

#hours_input_section .form-group label {
    font-size: 18px;
    color: #1e3a5f;
    font-weight: 600;
}

#hours_input_section input {
    font-size: 18px;
    padding: 12px;
    width: 150px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-options,
    .van-selection,
    .crew-selection,
    .service-types-selection {
        grid-template-columns: 1fr;
    }
    
    .items-section {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-prev-step, .btn-next-step, .btn-submit-booking {
        width: 100%;
    }
    
    /* Mobile styling for all select buttons */
    .btn-select-van,
    .btn-select-crew,
    .btn-select-service {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Mobile card styling */
    .van-card,
    .crew-card,
    .service-type-card {
        padding: 20px;
    }
    
    .van-card h3,
    .crew-card h3,
    .service-type-card h3 {
        font-size: 18px;
    }
}


