/* Custom Styles */
body {
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

/* Input Focus Styles */
.input-field:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.input-field {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.input-field::placeholder {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Vehicle Tab Styles */
.vehicle-tab {
    background: white;
    color: #666;
    border: 2px solid transparent;
}

.vehicle-tab.active {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.vehicle-tab:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.vehicle-tab.active:hover {
    color: white;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

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

/* Service Card Image Overlay */
.service-card-image {
    position: relative;
    overflow: hidden;
}

.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.service-card-image:hover::before {
    opacity: 0.8;
}

/* Carousel Styles */
.carousel-slide {
    transition: opacity 0.5s ease-in-out;
}

.carousel-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.carousel-prev,
.carousel-next {
    cursor: pointer;
    backdrop-filter: blur(5px);
}

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

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

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}
