/* Vehicle Showroom Styles */
.garage-section {
    position: relative;
    padding: 6rem 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    min-height: 80vh;
}

.garage-grid {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    align-items: center;
}

/* Vehicle Display (Center) */
.vehicle-stage {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.holo-platform {
    position: absolute;
    bottom: 50px;
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    transform: rotateX(60deg);
    animation: pulse-platform 4s infinite ease-in-out;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.1);
}

.vehicle-img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    animation: float-vehicle 6s infinite ease-in-out;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    position: absolute;
}

.vehicle-img.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Stats Panel (Right) */
.vehicle-stats {
    background: rgba(10, 10, 10, 0.8);
    border-left: 2px solid var(--accent-color);
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-row-v {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stat-bar-fill {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Selector Panel (Left) */
.vehicle-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vehicle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 1.5rem;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
}

.vehicle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.vehicle-btn:hover,
.vehicle-btn.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    color: #fff;
    padding-right: 2rem;
}

.vehicle-btn.active::before {
    transform: scaleY(1);
}

.vehicle-btn h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.vehicle-btn p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
@keyframes pulse-platform {

    0%,
    100% {
        opacity: 0.5;
        transform: rotateX(60deg) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: rotateX(60deg) scale(1.05);
    }
}

@keyframes float-vehicle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scanning Effect Line */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: cyan;
    box-shadow: 0 0 10px cyan;
    animation: scan 3s infinite linear;
    opacity: 0.5;
    z-index: 10;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}