/* Hero Section */
.vip-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.vip-hero-content {
    max-width: 800px;
    width: 100%;
}

.vip-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.vip-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Search Form */
.vip-search-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.search-result-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

/* Buttons */
.vip-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.vip-btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.vip-btn-primary:hover {
    background-color: #b3862f;
    color: white;
}

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

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

.vip-btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.vip-btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.vehicle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-card h3 {
    padding: 15px 20px 0;
    margin: 0;
    color: #333;
}

.vehicle-specs {
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    color: #666;
}

.vehicle-features {
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

.vehicle-card .vip-btn {
    margin: 20px;
    width: calc(100% - 40px);
}

/* Wizard */
.vip-wizard {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.vip-wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.vip-wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 20px;
    text-align: center;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #666;
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background: var(--success-color);
    color: white;
}

.step-title {
    display: block;
    font-weight: 500;
    color: #333;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Booking Form */
.vip-booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Performance: reduce CLS/LCP layout shifts */
.hero,
.vip-hero {
    min-height: clamp(260px, 45vw, 520px);
}

.hero-media,
.vip-hero-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hero-media img,
.vip-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vip-info {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    margin: 5px 0;
}

.vip-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 5px 0;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Confirmation Card */
.confirmation-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.confirmation-card h2 {
    color: var(--success-color);
    margin-bottom: 20px;
}

.booking-details {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: left;
}

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

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .vip-hero h1 {
        font-size: 2rem;
    }
    
    .vip-wizard-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .vip-wizard-steps::before {
        display: none;
    }
    
    .step {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0;
    }
    
    .step-number {
        margin: 0;
    }
}
