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

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

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

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

.floating {
    animation: float 3s ease-in-out infinite;
}

.glow-on-hover {
    transition: box-shadow 0.3s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}
.animate-bounce {
    animation: bounce 2s infinite;
}
.hero-section h1 {
    text-shadow: 0 4px 6px rgba(0,0,0,0.5);
    letter-spacing: -0.05em;
}

.hero-section p {
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.vehicle-card:hover .vehicle-image {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
/* Swiper custom styles */
.swiper-container {
    padding: 10px 30px !important;
    overflow: visible !important;
}
.swiper-slide {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.8;
    transform: scale(0.95);
    filter: brightness(0.9);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
    z-index: 10;
}
.swiper-button-next, 
.swiper-button-prev {
    color: white !important;
    background: rgba(17, 24, 39, 0.9) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(4px) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: rgba(37, 99, 235, 0.9) !important;
    transform: scale(1.1) !important;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold !important;
}
/* Form input styles */
input {
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1.25rem;
    }
}