.express-van-reservation-wrapper {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.reservation-heading {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.reservation-cost {
    text-align: center;
    font-size: 24px;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 5px;
}

.reservation-details {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 14px;
}

.reservation-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #ecf0f1;
}

.reservation-section:last-child {
    border-bottom: none;
    margin-bottom: 20px;
}

.reservation-section h3 {
    color: #34495e;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* Vehicle Selection Styles */
.vehicle-selection-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.vehicle-option {
    position: relative;
}

.vehicle-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vehicle-label {
    display: block;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.vehicle-label:hover {
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.vehicle-radio:checked + .vehicle-label {
    border-color: #27ae60;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.vehicle-image-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #ecf0f1;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-label:hover .vehicle-image {
    transform: scale(1.05);
}

.vehicle-info h4 {
    color: #2c3e50;
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.vehicle-capacity {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.vehicle-select-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    font-weight: bold;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-radio:checked + .vehicle-label .vehicle-select-indicator {
    opacity: 1;
}

.select-icon {
    font-size: 16px;
    display: inline-block;
}

/* Existing Styles Continue */
.reservation-field {
    margin-bottom: 20px;
}

.reservation-field label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 15px;
}

.field-required {
    color: #e74c3c;
    font-size: 18px;
    margin-left: 3px;
}

.reservation-field input[type="text"],
.reservation-field input[type="email"],
.reservation-field input[type="tel"],
.reservation-field input[type="number"],
.reservation-field select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.reservation-field input:focus,
.reservation-field select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.reservation-field input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.special-baggage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.special-baggage-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.special-baggage-options label:hover {
    background: #e8f4fd;
}

.field-info {
    color: #7f8c8d;
    font-size: 13px;
    margin-top: 5px;
    font-style: italic;
}

.counter-display {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.time-slot-status {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
}

.time-slot-status.available {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.time-slot-status.booked {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.reservation-actions {
    text-align: center;
    margin-top: 30px;
}

.reservation-submit-button {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 16px 60px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    width: 100%;
    max-width: 400px;
}

.reservation-submit-button:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.reservation-submit-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.reservation-submit-button:disabled:hover {
    background: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .express-van-reservation-wrapper {
        padding: 20px;
        margin: 20px;
    }
    
    .reservation-heading {
        font-size: 24px;
    }
    
    .reservation-cost {
        font-size: 20px;
    }
    
    .vehicle-selection-container {
        grid-template-columns: 1fr;
    }
    
    .vehicle-image-wrapper {
        height: 180px;
    }
    
    .special-baggage-options {
        grid-template-columns: 1fr;
    }
    
    .reservation-submit-button {
        padding: 14px 30px;
        font-size: 16px;
    }
}