/* ==============================================================
   HOME PAGE EXACT UI
   ============================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-red: #d3000f;
    --dark-bg: #141416;
    --card-bg: #1a1a1f;
    --text-dark: #111;
    --text-gray: #555;
    --text-light-gray: #888;
    --border-gray: #e5e5e5;
    --green: #25d366;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
}

.highlight {
    color: var(--primary-red);
}

.section-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #000;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #08080a;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* High Resolution & Wide Displays (1600px - 1880px+) */
@media (min-width: 1600px) {
    .hero-swiper .swiper-slide {
        background-size: contain;
        background-position: right center;
        background-repeat: no-repeat;
    }
}

.hero-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-content {
    max-width: 650px;
    color: #fff;
}

.hero-subtitle {
    color: #ccc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 65px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-line {
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    border: none;
    margin: 0 0 35px 0;
}

.hero-badges span {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 11px;
    color: #ddd;
    gap: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero-badges i {
    font-size: 22px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.btn-primary-hero {
    background: var(--primary-red);
    color: #fff;
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-hero:hover {
    background: #b0000c;
    color: #fff;
}

.btn-outline-hero {
    border: 1px solid #fff;
    color: #fff;
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-hero:hover {
    background: #fff;
    color: #000;
}

.hero-prev,
.hero-next {
    width: 55px;
    height: 55px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-prev::after,
.hero-next::after {
    font-size: 18px;
    font-weight: 800;
}

.hero-prev {
    left: 40px;
}

.hero-next {
    right: 40px;
}

/* 2. SEARCH ADVISOR SECTION */
.search-advisor-section {
    position: relative;
    z-index: 10;
    margin-top: -70px;
    padding: 0 20px;
}

.search-advisor-container {
    max-width: 1350px;
    margin: 0 auto;
    background: var(--dark-bg);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    display: flex;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.search-filters-box {
    padding: 35px 40px;
    flex: 2;
    background: var(--dark-bg);
}

.box-header h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.search-filters-box .filter-group label {
    display: block;
    font-size: 11px;
    color: var(--text-light-gray);
    margin-bottom: 5px;
    font-weight: 600;
}

.search-filters-box .filter-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 8px 0;
    outline: none;
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    font-family: 'Inter', sans-serif;
}

.search-filters-box .filter-group select option {
    background-color: #1a1a1f;
    color: #fff;
}

.filters-action-row {
    grid-column: span 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
}

.btn-more-filters {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search-cars {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 14px 45px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.or-divider {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark-bg);
}

.or-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 35px;
    bottom: 35px;
    width: 1px;
    background: #2a2a2a;
}

.or-divider span {
    background: #111;
    padding: 10px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #2a2a2a;
    margin: 0 -18px;
}

.ai-advisor-box {
    padding: 35px 40px;
    flex: 1.3;
    background: #111;
}

.badge-purple {
    background: #6b21a8;
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.ai-advisor-box p {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.ai-input-group {
    display: flex;
    margin-bottom: 20px;
    height: 48px;
}

.ai-input-group input {
    flex: 1;
    background: #1a1a1f;
    border: 1px solid #333;
    border-right: none;
    color: #fff;
    padding: 0 15px;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.btn-ai-recommend {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-suggestions {
    font-size: 11px;
    color: #888;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.suggestion-chip {
    border: 1px solid #333;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.suggestion-chip:hover {
    border-color: #fff;
    color: #fff;
}

/* 3. WHY CHOOSE MERCHANTS */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-red);
}

.why-item i {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.why-item:hover i {
    transform: scale(1.15);
}

.why-item h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.why-item p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* 4. RATINGS BAR */
.ratings-bar-section {
    background: #141416;
    padding: 30px 0;
    margin-bottom: 80px;
}

.ratings-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.rating-text strong {
    display: block;
    font-size: 26px;
    color: #fff;
    line-height: 1.1;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.rating-text span {
    color: #bbb;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

/* 5. BRANDS LINEUP */
.brands-lineup-section {
    padding: 0 0 80px;
    background: #fff;
}

/* 5. BRANDS & LINEUP */
.brands-lineup-section .section-container {
    max-width: 1550px;
}

.brands-section-header {
    margin-bottom: 40px;
}

.brands-section-header .section-title {
    text-transform: none;
    /* override uppercase */
}

.brands-section-header .subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.brands-section-header .subtitle .line {
    height: 2px;
    width: 40px;
    background: var(--primary-red);
}

.brands-section-header p {
    color: var(--text-light-gray);
    font-size: 15px;
    margin-top: 10px;
}

.brands-slider-wrapper {
    margin-bottom: 40px;
    padding: 0 50px;
}

.brand-logo-slide {
    text-align: center;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 20px 10px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand-logo-slide img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-logo-slide span {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 700;
    transition: 0.3s;
}

.brand-logo-slide:hover,
.brand-logo-slide.active {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-logo-slide.active span {
    color: var(--primary-red);
}

.auto-lineup-container {
    border: 1px solid var(--border-gray);
    border-left: 5px solid var(--primary-red);
    border-radius: 8px;
    padding: 35px 40px;
    background: #fff;
    text-align: left;
}

.lineup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.lineup-title-area h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.lineup-title-area p {
    font-size: 13px;
    color: var(--text-light-gray);
    margin: 0;
}

.btn-solid-red {
    background: var(--primary-red);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-solid-red:hover {
    background: #cc0000;
}

.models-slider-wrapper {
    padding: 0 50px;
}

.models-swiper {
    padding: 15px 5px 40px;
    margin: -15px -5px -40px;
}

.models-swiper .swiper-wrapper {
    align-items: stretch;
}

.model-card {
    border: 1px solid var(--border-gray);
    padding: 30px 20px 20px;
    border-radius: 8px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: auto;
}

.model-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.model-card img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.model-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.model-card>span {
    font-size: 12px;
    color: var(--text-light-gray);
    font-weight: 500;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
    /* push to bottom */
}

.card-footer span {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-yellow {
    color: #f59e0b;
}

.text-gray {
    color: #94a3b8;
}

.models-pagination {
    position: static;
    margin-top: 20px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
}

/* 6. TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.testimonials-wrapper {
    padding: 0 40px;
    /* Space for arrows */
}

.testimonials-swiper {
    padding: 15px 10px 40px;
    margin: -15px -10px -40px;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: left;
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.quote-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.quote-left-stars {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-icon {
    color: #e0e0e0;
    font-size: 24px;
}

.quote-top .stars {
    color: var(--primary-red);
    font-size: 14px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 500;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.author h5 {
    color: var(--text-dark);
    font-size: 15px;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.author span {
    color: var(--text-light-gray);
    font-size: 12px;
}

.btn-outline-gray {
    border: 1px solid var(--border-gray);
    color: var(--text-gray);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Custom Swiper Arrows */
.custom-arrow {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    color: #555;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.custom-arrow::after {
    font-size: 14px;
    font-weight: bold;
}

.custom-arrow:hover {
    background: #f8f8f8;
    color: var(--text-dark);
}

.testi-prev {
    left: -10px;
}

.testi-next {
    right: -10px;
}

.brands-prev,
.models-prev {
    left: 0;
}

.brands-next,
.models-next {
    right: 0;
}

/* 7. SOCIAL MEDIA */
.social-media-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links span {
    font-size: 14px;
    font-weight: 600;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links i {
    font-size: 18px;
}

.text-red {
    color: #E1306C;
}

.text-blue {
    color: #1877f2;
}

.text-youtube {
    color: #ff0000;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.social-video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.social-video-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: 0.3s;
}

.social-video-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
    z-index: 2;
}

.social-video-card:hover .play-btn {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.platform-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
    color: #fff;
    z-index: 2;
}

.video-info {
    margin-top: 15px;
}

.video-info span {
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    display: block;
}

.video-info h4 {
    color: var(--text-dark);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

/* 8. NEWS & INSIGHTS */
.news-insights-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.news-insights-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.news-insights-title-area {
    max-width: 700px;
}

.small-tag-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.main-news-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.news-desc-text {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.news-insights-btn-area {
    margin-bottom: 5px;
}

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

.news-card {
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.news-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.img-wrapper {
    position: relative;
    height: 240px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-red {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 3px;
    letter-spacing: 1px;
}

.news-card .content {
    padding: 30px;
}

.news-card h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 800;
}

.news-card .date {
    color: var(--text-light-gray);
    font-size: 12px;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.news-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    text-decoration: none;
}

/* 9. CONTACT CTAS */
.contact-ctas-section {
    padding: 80px 0 100px;
    background: #fff;
    border-top: 1px solid #eee;
}

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

.cta-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.cta-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
    transform: translateY(-8px);
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-icon-wrapper {
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-header-text h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 800;
    text-transform: uppercase;
}

.status-online {
    color: var(--green);
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-box p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 30px;
    min-height: 42px;
    line-height: 1.6;
}

.btn-red {
    background: var(--primary-red);
    color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-green {
    background: var(--green);
    color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
}

.cta-box .btn-outline-red {
    background: #fff;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 14px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
}

.cta-box .btn-outline-red:hover {
    background: var(--primary-red);
    color: #fff;
}

.text-green {
    color: var(--green);
}

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

/* ==============================================================
   MOBILE RESPONSIVENESS (Media Queries)
   ============================================================== */

/* Tablet & Smaller Desktop (max-width: 1200px) */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 50px;
    }

    .hero-container {
        padding-top: 100px;
    }

    .hero-text-content {
        max-width: 500px;
    }

    .search-advisor-container {
        flex-direction: column;
    }

    .search-filters-box,
    .ai-advisor-box {
        flex: 1;
        width: 100%;
    }

    .or-divider {
        width: 100%;
        height: 1px;
    }

    .or-divider::before {
        top: 50%;
        bottom: auto;
        left: 35px;
        right: 35px;
        height: 1px;
        width: auto;
    }

    .or-divider span {
        margin: -18px auto;
        display: block;
        width: max-content;
    }

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

    .brands-slider-wrapper {
        padding: 0 30px;
    }

    .auto-lineup-container {
        padding: 25px 20px;
    }

    .testimonials-wrapper {
        padding: 0 20px;
    }

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

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .hero-swiper .swiper-slide {
        background-position: center center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 15px;
    }

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

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

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-prev,
    .hero-next,
    .brands-prev,
    .brands-next,
    .models-prev,
    .models-next,
    .testi-prev,
    .testi-next {
        display: none;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .hero-section {
        min-height: 600px;
        height: auto;
    }

    .hero-container {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 34px;
    }

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

    .filters-action-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        grid-column: 1 / -1;
    }

    .btn-more-filters,
    .btn-search-cars {
        width: 100%;
        justify-content: center;
    }

    .ai-input-group {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .ai-input-group input {
        border-right: 1px solid #333;
        border-radius: 4px;
        height: 48px;
    }

    .btn-ai-recommend {
        border-radius: 4px;
        height: 48px;
        justify-content: center;
    }

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

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

    .lineup-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-insights-header-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .main-news-title {
        font-size: 30px;
    }

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

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

    .quote-top {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* Extra Small (max-width: 480px) */
@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}