
.cars {
    position: relative !important;
}

.cars::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    z-index: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

        :root {
            --section-padding: 4rem 0;
            --secondary-black: #1a1a1a;
            --primary-black: #0a0a0a;
            --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            --accent-red: #e50000;
            --medium-gray: #888;
            --text-white: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #000;
            color: var(--text-white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Cars Section */
        .cars {
            padding: var(--section-padding);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .text-accent {
            color: var(--accent-red);
        }

        .section-header p {
            color: var(--medium-gray);
            font-size: clamp(1rem, 2vw, 1.2rem);
        }

        /* Carousel Styles */
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-wrapper {
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 2rem;
        }

        .car-card {
            background: var(--secondary-black);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            min-width: 320px;
            flex: 0 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(229, 0, 0, 0.2);
        }

        /* Carousel Navigation Buttons */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(229, 0, 0, 0.9);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 100;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:hover {
            background: rgba(229, 0, 0, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(229, 0, 0, 0.4);
        }

        .carousel-btn svg {
            width: 24px;
            height: 24px;
            stroke-width: 2;
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--accent-red);
            transform: scale(1.3);
        }

        .carousel-dot:hover {
            background: rgba(229, 0, 0, 0.7);
        }

        /* View More Button */
        .view-more-section {
            text-align: center;
            margin-top: 3rem;
        }

        .view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--accent-red), #ff4444);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(229, 0, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .view-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(229, 0, 0, 0.4);
            background: linear-gradient(135deg, #ff4444, var(--accent-red));
        }

        .view-more-btn svg {
            transition: transform 0.3s ease;
        }

        .view-more-btn:hover svg {
            transform: translateX(5px);
        }

        .car-image {
            position: relative;
            height: 250px;
            background: var(--dark-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .car-placeholder {
            font-size: 4rem;
            opacity: 0.3;
        }

        .car-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(229, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .car-card:hover .car-overlay {
            opacity: 1;
        }

        .car-info {
            padding: 2rem;
        }

        .car-info h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 0.5rem;
        }

        .car-info p {
            color: var(--medium-gray);
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .car-specs {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .car-specs span {
            background: var(--primary-black);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: clamp(0.75rem, 1.5vw, 0.85rem);
            color: var(--accent-red);
        }

        .btn {
            background: var(--accent-red);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
        }

        .btn:hover {
            background: #cc0000;
            transform: scale(1.05);
        }

        .btn-small {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }

        /* Cars Responsive Styles */
        @media (max-width: 768px) {
            .carousel-container {
                margin: 0 -1rem;
                border-radius: 0;
            }
            
            .carousel-wrapper {
                border-radius: 0;
            }
            
            .carousel-track {
                gap: 1rem;
                padding: 0 1rem;
            }
            
            .car-card {
                min-width: 280px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn svg {
                width: 20px;
                height: 20px;
            }
            
            .carousel-btn-prev {
                left: 10px;
            }
            
            .carousel-btn-next {
                right: 10px;
            }
            
            .view-more-btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .car-card {
                min-width: 250px;
            }
            
            .car-info {
                padding: 1.5rem;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
            }
            
            .carousel-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        /* Smooth scrolling for carousel on touch devices */
        @media (hover: none) and (pointer: coarse) {
            .carousel-track {
                scroll-snap-type: x mandatory;
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .carousel-track::-webkit-scrollbar {
                display: none;
            }
            
            .car-card {
                scroll-snap-align: center;
            }
        }