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

        :root {
            --primary: #272727;
            --blue: #296D7F;
            --accent: #0AA3D1;
            --accent-hover: #b82316;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-gray: #343a40;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            background: var(--light);
        }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* HEADER */
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
        }

        .logo span { color: var(--accent); }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
            padding: 0;
        }

        nav a {
            font-weight: 500;
            color: var(--dark-gray);
            transition: var(--transition);
            position: relative;
        }

        nav a:hover { color: var(--accent); }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        nav a:hover::after { width: 100%; }

        .nav-cta {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.95rem;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary {
            /* background: var(--accent) !important; */
			background: linear-gradient(135deg, #0AA3D1, #00C896);
            color: var(--white) !important;
            border-color: var(--accent) !important;
        }

        .btn-primary:hover {
            /* background: var(--accent-hover) !important; */
			/*background: linear-gradient(135deg, #0AA3D1, #00C896);
            transform: translateY(-2px);
			*/
			background: linear-gradient(135deg, #087FA3, #009E74);
    		transform: scale(1.03);
            /* box-shadow: 0 4px 15px rgba(217, 44, 28, 0.35); */
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* CORRECTED FULL WIDTH BANNER */
        .home-banner {
            width: 100%;
            margin: 106px 0 0 0;
            padding: 0;
            line-height: 0;
            overflow: hidden;
            background: transparent;
        }

        .home-banner .carousel,
        .home-banner .carousel-inner,
        .home-banner .carousel-item,
        .home-banner picture {
            width: 100%;
            line-height: 0;
        }

        .home-banner-img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: unset;
        }

        .home-banner .carousel-indicators {
            bottom: 18px;
            margin-bottom: 0;
            gap: 8px;
            align-items: center;
        }

        .home-banner .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ffffff;
            opacity: 1;
            border: 0;
            margin: 0;
        }

        .home-banner .carousel-indicators .active {
            width: 34px;
            border-radius: 30px;
            background-color: var(--accent);
        }

        .home-banner .carousel-control-prev,
        .home-banner .carousel-control-next { width: 6%; }

        .home-banner .carousel-control-prev-icon,
        .home-banner .carousel-control-next-icon {
            width: 42px;
            height: 42px;
			background-color: rgb(8, 155, 200);
            /* background-color: rgba(39, 39, 39, 0.75); */
            border-radius: 50%;
            background-size: 55%;
        }

        /* SEARCH BOX */
        .search-section {
            margin-top: 40px;
            position: relative;
            z-index: 10;
        }

        .search-box {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 32px;
        }

        .search-box h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .search-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr) auto;
            gap: 16px;
            align-items: end;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gray);
        }

        .form-group select,
        .form-group input {
            padding: 14px 16px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--light);
        }

        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--white);
        }

        .btn-search {
            padding: 14px 32px;
            height: fit-content;
        }

        /* FEATURED CARS */
        .featured { padding: 100px 0; }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(217, 44, 28, 0.1);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .car-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .car-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .car-image {
            position: relative;
            height: 220px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .car-image-icon {
            font-size: 4rem;
            opacity: 0.8;
        }

        .car-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--accent);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .car-favorite {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .car-favorite:hover {
            background: var(--accent);
            color: var(--white);
        }

        .car-details { padding: 24px; }

        .car-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .car-subtitle {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 16px;
        }

        .car-specs {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .spec {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--gray);
        }

        .car-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .car-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
        }

        .car-price span {
            font-size: 0.85rem;
            color: var(--gray);
            font-weight: 400;
        }

        .btn-view {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        /* WHY CHOOSE US */
        .why-us {
            padding: 100px 0;
            background: var(--primary);
        }

        .why-us .section-header h2 { color: var(--white); }
        .why-us .section-header p { color: rgba(255, 255, 255, 0.7); }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent), #ff6b5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2rem;
        }

        .feature-card h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        /* BRANDS */
        .brands { padding: 80px 0; }

        .brands-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .brand-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray);
            opacity: 0.5;
            transition: var(--transition);
        }

        .brand-logo:hover {
            opacity: 1;
            color: var(--primary);
        }

        /* CTA */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--accent), #ff6b5a);
        }

        .cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 32px;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
        }

        /* FOOTER */
        footer {
            background: var(--primary);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
        }

        .social-link:hover { background: var(--accent); }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 24px;
        }

        .footer-col ul { list-style: none; padding: 0; }
        .footer-col li { margin-bottom: 12px; }

        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-col a:hover { color: var(--accent); }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-links a:hover { color: var(--white); }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .search-grid { grid-template-columns: repeat(2, 1fr); }
            .btn-search { grid-column: span 2; }
            .cars-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
			.carousel-control-next{
				display: none;
			}
			.carousel-control-prev{
				display: none;
			}
            .container { padding: 0 16px; }
            nav ul, .nav-cta { display: none; }
            .mobile-menu { display: flex; }

            .home-banner { margin-top: 108px; }

            .home-banner .carousel-indicators { bottom: 10px; }

            .home-banner .carousel-indicators [data-bs-target] {
                width: 9px;
                height: 9px;
            }

            .home-banner .carousel-indicators .active { width: 25px; }

            .home-banner .carousel-control-prev-icon,
            .home-banner .carousel-control-next-icon {
                width: 32px;
                height: 32px;
            }

            .search-section { margin-top: 30px; }
            .search-grid { grid-template-columns: 1fr; }
            .btn-search { grid-column: span 1; }
            .cars-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .brands-wrapper { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .section-header h2, .cta h2 { font-size: 2rem; }
        }
        
        /* ==============================
   TOP MODELS SECTION
================================= */

#models {
    padding: 90px 0;
    background: #f7f7f7;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    gap: 20px;
}

.section-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #272727;
    position: relative;
}

.section-head h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #D92C1C;
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 20px;
}

/* explore button */

.section-head a {
    background: #272727;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    border: 2px solid #272727;
}

.section-head a i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #D92C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.section-head a:hover {
    background: #D92C1C;
    border-color: #D92C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217,44,28,0.25);
}

.section-head a:hover i {
    background: #fff;
    color: #D92C1C;
    transform: translateX(4px);
}

/* grid */

.car-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* card */

.car-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.35s ease;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* image */

.car-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* demo images */

.car1 {
    background-image: url('images/car1.jpg');
}

.car2 {
    background-image: url('images/car2.jpg');
}

.car3 {
    background-image: url('images/car3.jpg');
}

.car4 {
    background-image: url('images/car4.jpg');
}

/* overlay gradient */

.car-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
}

/* tags */

.tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag.red {
    background: #D92C1C;
}

.tag.blue {
    background: #296D7F;
}

/* wishlist */

.wish {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #272727;
    cursor: pointer;
    z-index: 3;
    font-size: 16px;
    transition: 0.3s ease;
}

.wish:hover {
    background: #D92C1C;
    color: #fff;
}

/* content */

.car-card .brand {
    font-size: 13px;
    font-weight: 700;
    color: #296D7F;
    text-transform: uppercase;
    margin: 20px 22px 8px;
    letter-spacing: 1px;
}

.car-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #272727;
    margin: 0 22px 10px;
}

.details {
    margin: 0 22px 18px;
    color: #777;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 18px;
}

/* price */

.car-card h4 {
    margin: 0 22px 22px;
    color: #D92C1C;
    font-size: 28px;
    font-weight: 800;
}

/* hover arrow */

.car-card::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #272727;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}
/*
.car-card:hover::before {
    opacity: 1;
    transform: translateY(0);
    background: #D92C1C;
}
*/
/* responsive */

@media(max-width: 1200px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    #models {
        padding: 70px 0;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-head h2 {
        font-size: 30px;
    }

    .car-grid {
        grid-template-columns: 1fr;
    }

    .car-img {
        height: 240px;
    }

    .car-card h3 {
        font-size: 22px;
    }

    .car-card h4 {
        font-size: 24px;
    }

    .section-head a {
        width: 100%;
        justify-content: center;
    }
}

/* ==============================
   PREMIUM MOVING TOP MODELS
================================= */

.top-models-premium {
    padding: 95px 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(217, 44, 28, 0.10), transparent 28%),
        radial-gradient(circle at 92% 65%, rgba(41, 109, 127, 0.12), transparent 32%),
        #f7f7f7;
    overflow: hidden;
}

.tm-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.tm-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

.tm-subtitle::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.tm-header h2 {
    color: var(--primary);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    font-weight: 900;
    margin: 0 0 14px;
    letter-spacing: -1.5px;
}

.tm-header p {
    max-width: 600px;
    color: #6d6d6d;
    margin: 0;
    font-size: 16px;
}

.tm-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.tm-view-all {
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    box-shadow: 0 15px 30px rgba(39, 39, 39, 0.16);
}

.tm-view-all:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.tm-arrows {
    display: flex;
    gap: 10px;
}

.tm-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(39,39,39,0.12);
    background: #fff;
    color: var(--primary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.tm-arrow:hover,
.tm-arrow.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.tm-slider-wrap {
    position: relative;
}

.tm-slider {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 2px 34px;
    scrollbar-width: none;
}

.tm-slider::-webkit-scrollbar {
    display: none;
}

.tm-card {
    flex: 0 0 calc((100% - 78px) / 4);
    min-width: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(39, 39, 39, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: 0.35s ease;
    position: relative;
}

.tm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.15);
}

.tm-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.tm-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.58), rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.10));
}

.tm-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.tm-badge.red {
    background: var(--accent);
}

.tm-badge.blue {
    background: var(--blue);
}

.tm-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.94);
    color: var(--primary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.tm-wish:hover {
    background: var(--accent);
    color: #fff;
}

.tm-content {
    padding: 22px;
}

.tm-brand {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.tm-content h3 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
    margin: 7px 0 14px;
    letter-spacing: -0.7px;
}

.tm-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eeeeee;
}

.tm-specs span {
    background: #f5f5f5;
    color: #666;
    padding: 8px 10px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tm-specs i {
    color: var(--accent);
}

.tm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tm-footer h4 {
    color: var(--accent);
    font-size: 23px;
    font-weight: 900;
    margin: 0;
}

.tm-explore {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    transition: 0.3s ease;
    flex: 0 0 46px;
}

.tm-card:hover .tm-explore {
    background: var(--accent);
    transform: rotate(-35deg);
}

.car5 {
    background-image: url('images/car5.jpg');
}

.car6 {
    background-image: url('images/car6.jpg');
}

.tm-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.tm-left{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.tm-price{
    margin:0;
}

.tm-negotiable-label{
    font-size:13px;
    color:#777;
    margin-top:2px;
}

@media (max-width: 1199px) {
    .tm-card {
        flex-basis: calc((100% - 52px) / 3);
    }
}

@media (max-width: 991px) {
    .tm-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tm-actions {
        width: 100%;
        justify-content: space-between;
    }

    .tm-card {
        flex-basis: calc((100% - 26px) / 2);
    }
}

@media (max-width: 575px) {
    .top-models-premium {
        padding: 70px 0;
    }

    .tm-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tm-view-all {
        justify-content: center;
    }

    .tm-arrows {
        justify-content: center;
    }

    .tm-card {
        flex-basis: 86%;
    }

    .tm-img {
        height: 210px;
    }

    .tm-content h3 {
        font-size: 23px;
    }

    .tm-footer h4 {
        font-size: 21px;
    }
}


.search-toggle{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(135deg, #0AA3D1, #00C896);
    color:#fff;
    padding:15px 20px;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
    width: 100%;
}

.search-toggle:hover{
    /* background:#d68d60; */
    background:linear-gradient(135deg, #d68d60, #00C896);
}

.search-toggle .arrow{
    font-size:14px;
    transition:0.3s;
}

.search-toggle.active .arrow{
    transform:rotate(180deg);
}

.search-box{
    display:none;
    margin-top:20px;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.search-box.active{
    display:block;
    animation:fadeIn .3s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* product detail page */
.vehicle-detail-page{
    padding:130px 0 !important;
    background:#f7f8fa;
}

.vehicle-detail-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
    align-items:start;
}

.vehicle-gallery,
.vehicle-info-box,
.vehicle-section{
    background:#fff;
    border-radius:22px;
    padding:22px;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
}

.vehicle-main-image{
    height:460px;
    border-radius:18px;
    overflow:hidden;
    background:#eee;
}

.vehicle-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.vehicle-thumbs{
    display:flex;
    gap:12px;
    margin-top:15px;
    overflow-x:auto;
}

.vehicle-thumbs img{
    width:100px;
    height:75px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
}

.vehicle-thumbs img:hover{
    border-color:#d68d60;
}

.vehicle-badge{
    display:inline-block;
    background:#0c1e21;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.vehicle-info-box h1{
    font-size:32px;
    line-height:1.25;
    color:#0c1e21;
    margin-bottom:18px;
}

.vehicle-price-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:8px;
}

.vehicle-price-row h2{
    color:#d68d60;
    font-size:34px;
    margin:0;
}

.negotiable-label{
    background:#e9f8ef;
    color:#17803a;
    padding:7px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.mrp-text{
    color:#777;
    margin-bottom:25px;
}

.mrp-text span{
    color:#d63031;
    font-weight:700;
    margin-left:8px;
}

.quick-specs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:25px 0;
}

.quick-specs div{
    background:#f5f6f7;
    padding:16px;
    border-radius:15px;
}

.quick-specs strong{
    display:block;
    color:#0c1e21;
    font-size:17px;
}

.quick-specs span{
    color:#777;
    font-size:13px;
}

.vehicle-cta{
    display:flex;
    gap:12px;
}

.vehicle-cta a{
    flex:1;
    text-align:center;
    padding:14px 18px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

.call-btn{
    background:#0c1e21;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.vehicle-section{
    margin-top:30px;
}

.vehicle-section h3{
    color:#0c1e21;
    margin-bottom:20px;
    font-size:24px;
}

.detail-table{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.detail-table div{
    background:#f7f8fa;
    padding:16px;
    border-radius:14px;
}

.detail-table span{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:5px;
}

.detail-table strong{
    color:#0c1e21;
    font-size:15px;
}

.vehicle-content{
    color:#444;
    font-size:16px;
    line-height:1.8;
}

@media(max-width:991px){
    .vehicle-detail-grid{
        grid-template-columns:1fr;
    }

    .detail-table{
        grid-template-columns:repeat(2,1fr);
    }

    .vehicle-main-image{
        height:320px;
    }
}

@media(max-width:575px){
    .vehicle-info-box h1{
        font-size:24px;
    }

    .vehicle-price-row h2{
        font-size:28px;
    }

    .quick-specs,
    .detail-table{
        grid-template-columns:1fr;
    }

    .vehicle-cta{
        flex-direction:column;
    }
}
/* product detail page ends */