/* Global Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

/* Components */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gradient-text {
    background: linear-gradient(to right, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

.active-tab {
    border-bottom: 2px solid #fbbf24;
    color: #fbbf24;
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.no-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar { width: 8px; height: 8px; }
.custom-scroll::-webkit-scrollbar-track { background: #f1f5f9; }
.custom-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.custom-scroll::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* 3D Side View Garage Background */
.garage-diorama {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #f1f5f9;
    perspective: 1200px;
    pointer-events: none; /* Agar klik tembus ke konten di bawahnya */
}

.garage-scene {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

.garage-bg {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: center;
    /* Push back and scale to compensate perspective */
    transform: translate(-50%, -50%) translateZ(-80px) scale(1.2);
}

.garage-car-layer {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    height: auto;
    /* Pull forward for 3D effect */
    transform: translate(-50%, -50%) translateZ(40px);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

.garage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 1) 100%
    );
    z-index: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .garage-bg {
        height: 100%;
        width: auto;
        min-width: 200%;
        object-fit: cover;
    }
    .garage-car-layer {
        width: 180%;
        top: 52%;
    }
}