@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1152d4;
    --primary-dark: #0d3eb0;
    --primary-light: #e7effe;
    --secondary: #f6f6f8;
    --accent: #ff6b6b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(16, 22, 34, 0.8);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.premium-gradient {
    background: linear-gradient(135deg, #1152d4 0%, #3b82f6 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #1152d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    backdrop-filter: blur(12px);
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-effect {
    background: var(--glass-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(17, 82, 212, 0.25);
}

.car-card-img {
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.group:hover .car-card-img {
    transform: scale(1.1);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Skeleton for better loading feel */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
