.vt-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.vt-search-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vt-search-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.vt-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.vt-form-group {
    display: flex;
    flex-direction: column;
}

.vt-form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.vt-form-control {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.vt-form-control:focus {
    outline: none;
    border-color: #ff6a00;
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.1);
}

.vt-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vt-btn-primary {
    background-color: #ff6a00;
    color: white;
}

.vt-btn-primary:hover {
    background-color: #e55c00;
}

.vt-btn-secondary {
    background-color: #6c757d;
    color: white;
}

.vt-btn-secondary:hover {
    background-color: #5a6268;
}

.vt-btn-success {
    background-color: #28a745;
    color: white;
}

.vt-form-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.vt-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vt-vehicle-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vt-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.vt-vehicle-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.vt-vehicle-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.vt-vehicle-info {
    margin-bottom: 15px;
}

.vt-vehicle-info p {
    margin: 5px 0;
    color: #666;
}

.vt-vehicle-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6a00;
    margin: 15px 0;
}

.vt-vehicle-services {
    margin: 15px 0;
}

.vt-service-badge {
    display: inline-block;
    padding: 5px 10px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 5px 5px 5px 0;
    font-size: 12px;
}

.vt-contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.vt-booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.vt-booking-summary h3 {
    margin-bottom: 15px;
}

.vt-booking-summary p {
    margin: 10px 0;
}

.vt-thank-you {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vt-pnr-display {
    font-size: 24px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.vt-pnr-display strong {
    display: block;
    margin-bottom: 10px;
}

.vt-pnr-display span {
    color: #ff6a00;
    font-weight: bold;
}

.vt-thank-you-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 768px) {
    .vt-form-row {
        grid-template-columns: 1fr;
    }
    
    .vt-contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .vt-vehicles-grid {
        grid-template-columns: 1fr;
    }
}

