/* ==================== ROOT VARIABLES ==================== */
:root {
    --main-blue: #4887c9;
    --main-blue-dark: #273574;
    --main-text: #181818;
    --gray-bg: #f7f7f7;
    --filter-box-bg: #f7f7f7;
    --filter-border: #e7e7e7;
    --filter-label: #000000;
    --border-color: #e5e7eb;
}

/* ==================== BASE STYLES ==================== */
* {
    box-sizing: border-box;
}

body {
    color: #181818;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0!important;
}
section.homepage-filters form.filter-form button{
    background: var(--main-blue);
}

.chosen-container-single .chosen-single{
    border: 1px solid #eee;
}

/*Filter overright css */
section.homepage-filters{
    margin-top: 0!important;
}
section.homepage-filters form.filter-form label{
    font-weight: 500!important;
}
section.homepage-filters select, section.homepage-filters #inputPostalCode{
    border: none!important;
    background-color: #f5f5f5f5!important;
    font-size: 0.875rem !important;
    height: 50px!important;
}
section.homepage-filters div.tab-content{
    padding: 0!important;
    box-shadow: none!important;
    border: none!important;
}
section.homepage-filters .form-group.px-3{
    padding-left: 0!important;
}

/* Filter end */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
/*====================== Slider ===================*/

#mySlider-container {
  position: relative;
  width: 100%;
  /*max-width: 400px;*/
  overflow: hidden;
  margin: auto;
  /*border: 2px solid #333;*/
}

#mySlider {
  display: flex;
  transition: transform 0.3s ease;
}

#mySlider .slide {
  min-width: 100%;
  height: 400px;
  /*background: #ccc;*/
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mySlider .slide img{
    width: 100%;
}

/* Counter Overlay */
#mySlider-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

#mySlider-counter .camera-icon {
  font-size: 18px;
  margin-left: 10px;
  margin-top: -6px;
}
.last_images ul{
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
}
.last_images ul li{
    list-style-type: none;
    width: 48.8%;
}

.last_images ul li a{

}
.last_images ul li a img{
    width: 100%;
    max-height: 196px;
    object-fit: cover;
}
.font-title h1{
    font-size: 1.875rem;
    font-weight: 800;
    padding-bottom: 10px;
}
.font-title h5{
    font-size: 0.875rem;
}

.extra_web .card{
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
}
.extra_web a{
    font-size: 15px;
    font-weight: 600;
    padding: 5px;
    color: #000;
}
.sticky-header {
  position: fixed;
  top: -100px; /* hidden above screen */
  left: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: top 0.4s ease; /* smooth slide effect */
  padding: 0 18%;
    max-width: 100%;
}

.sticky-header.show {
  top: 0; /* slide into view */
}
.font-title-price h2{
font-size: 1.5rem;
    font-weight: 800;
}

.font-title-price h2 span{
    font-size: 13px;
    font-weight: 400;
}

.font-title-price small{
    font-size: 16px;
    font-weight: 800;
    color: #000 !important;
}
.font-title-price{
    margin-top: 15px;
}
.font-title{
       padding-top: 10px;
}
.bellow-badge .d-flex{
    gap: 20px;
    padding-left: 25px;
}
.bellow-badge .d-flex div{
    text-align: left;
}
.bellow-badge .d-flex div .text-dark{
    color: #000 !important;
    font-weight: 600;
    font-size: 16px;
    margin-top: 0px;

}

.bellow-badge .border{
    background:#F5F5F5;
}
.bellow-badge i, .visit_web i{
    font-size: 20px;
    color: #000;
}
.visit_web a{
    font-size: 15px;
    font-weight: 600;
    padding: 5px;
    color: #000;
}
.visit_web{
    margin-top: 8px;
}

.custom-accordion {
  margin: 1rem auto 5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.custom-accordion-item + .custom-accordion-item {
  border-top: 1px solid #ddd;
}

.custom-accordion-trigger {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-accordion-trigger:hover {
  background: #f9f9f9;
}

.custom-chevron {
  transition: transform 0.3s ease;
}

.custom-accordion-trigger[aria-expanded="true"] .custom-chevron {
  transform: rotate(180deg);
}

.custom-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.custom-accordion-panel.open {
     max-height: 400px;
    overflow-y: scroll;
}

.custom-accordion-inner {
  padding: 1rem 1.25rem;
  background: #fff;
}
.custom-accordion-trigger {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
  outline: none; /* remove focus outline */
}
.custom-accordion-trigger i{
    font-size: 18px;
    margin-right: 5px;
}

.custom-accordion-trigger:focus {
  outline: none; /* remove default browser outline */
  box-shadow: none; /* remove focus shadow in Safari/Chrome */
}

.custom-accordion-trigger:hover {
  background: #f9f9f9;
}


/* Arrows */
#prevArrow, #nextArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
}

#prevArrow {
  left: 10px;
}

#nextArrow {
  right: 10px;
}

#prevArrow:hover, #nextArrow:hover {
  background: rgba(0, 0, 0, 0.8);
}


/* ==================== HEADER ====================  */
.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 18px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    margin-right: 20px;
    cursor: pointer;
    display: none;
}

.logo {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--main-blue);
    display: flex;
    align-items: center;
    width: 40%;
}

.logo img {
    max-width: 70%;
}

.logo-marketplace {
    color: #181818;
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 4px;
    display: flex;
    align-items: center;
}

.marketplace-badge {
    background: #181818;
    color: #fff;
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 3px;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    margin-left: 36px;
    gap: 28px;
    transition: max-height 0.3s;
}

.main-nav a {
    color: #181818;
    font-weight: 800;
    font-style: italic;
    font-size: .825rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--main-blue);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-icon {
    font-size: 1.3rem;
    color: #181818;
    margin-right: 4px;
}

.login-link {
    color: #181818;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.login-link:hover {
    color: var(--main-blue);
}

/* ==================== SEARCH/FILTERS ==================== */
.main-content {
    margin-top: 38px;
}

/* Animated heading */
.search-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 38px;
    color: #181818;
    line-height: 1.25;
}

.search-title .search-animated-text {
    display: inline-block;
    position: relative;
    min-width: 270px;
    height: 35px;
    overflow: hidden;
    vertical-align: middle;
}

.search-title .search-slide {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 1;
    transform: translateY(0%);
    font-style: italic;
    color: var(--main-blue);
    font-weight: 800;
    font-size: 1.08em;
    transition:
        transform 0.65s cubic-bezier(.45, .02, .35, 1.15),
        opacity 0.40s cubic-bezier(.45, .02, .35, 1.15);
    will-change: transform, opacity;
}

.search-title .search-slide.slide-out {
    opacity: 0;
    transform: translateY(-120%);
    transition:
        transform 0.68s cubic-bezier(.45, .02, .35, 1.15),
        opacity 0.38s cubic-bezier(.45, .02, .35, 1.15);
}

.search-title .search-slide.slide-in {
    opacity: 1;
    transform: translateY(0%);
    transition:
        transform 0.68s cubic-bezier(.45, .02, .35, 1.15),
        opacity 0.38s cubic-bezier(.45, .02, .35, 1.15);
}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-end;
    margin-bottom: 14px;
    justify-content: flex-start;
}

.search-filters:focus-visible {
    border: none;
    outline: none !important;
}

.filter-col {
    display: flex;
    flex-direction: column;
    min-width: 170px;
    max-width: 33.33%;
    flex: 1 1 30%;
}

.filter_select {
    background: #f5f5f5f5;
    border: none;
    height: 60px;
    padding: 0 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.filter-col label {
    color: var(--filter-label);
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 6px;
    margin-left: 4px;
}

.filter-box {
    background: var(--filter-box-bg);
    border: 1px solid var(--filter-border);
    border-radius: 5px;
    padding: 13px 13px 13px 15px;
    font-size: 1.09rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
    cursor: pointer;
    transition: border 0.18s;
}

.filter-box.expanded {
    border: 1px solid var(--main-blue);
}

.filter-box i {
    font-size: 1rem;
    color: #666;
}

.results-btn {
    display: flex;
    align-items: center;
    background: var(--main-blue);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0 32px;
    border-radius: 0 0 0 0;
    margin-left: 8px;
    height: 72px;
    cursor: pointer;
    transition: background 0.16s;
    gap: 8px;
}

.results-btn strong {
    font-size: 1.5rem;
    margin-right: 4px;
    font-weight: 800;
}

.results-btn i {
    font-size: 1.4rem;
    margin-left: 10px;
}

.advanced-filters-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 1rem;
}

.advanced-link {
    color: var(--main-blue);
    cursor: pointer;
    font-weight: 500;
}

.advanced-link i {
    margin-left: 3px;
    font-size: 1.04rem;
}

.filters-count {
    display: inline-block;
    background: #ececec;
    color: #222;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    text-align: center;
    line-height: 23px;
    font-weight: bold;
    margin-left: 3px;
    margin-right: 4px;
}

.remove-link {
    color: #888;
    margin-left: 8px;
    cursor: pointer;
}

/* ==================== VEHICLE SECTION ==================== */
.vehicle-section {
    max-width: 1280px;
    margin: 50px auto;
    border-top: 1px solid var(--border-color);
    padding-bottom: 24px;
    padding-top: 50px;
}

.vehicle-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
}

.vehicle-col {
    flex: 1 1 0;
    min-width: 0;
}

.vehicle-heading {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0;
    font-style: italic;
    margin: 0 0 2px 0;
}

.vehicle-subheading {
    color: #a2aec2;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.vehicle-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 18px 0 rgba(60, 60, 60, .07);
    display: flex;
    align-items: stretch;
    margin-bottom: 22px;
    overflow: visible;
    position: relative;
    min-height: 172px;
    height: 240px;
    transition: box-shadow 0.23s cubic-bezier(.37, .31, .39, 1.42), transform 0.23s cubic-bezier(.37, .31, .39, 1.42);
}

.vehicle-card:hover {
    box-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.19);
    transform: translateY(-4px) scale(1.016);
}

.vehicle-img {
    /*width: 250px;*/
    height: 100%;
        min-height: 240px;
    max-height: 240px;
    object-fit: cover;
    border-radius: 7px 0 0 7px;
    margin-right: 18px;
    background: #eee;
    transition: transform 0.36s cubic-bezier(.37, .31, .39, 1.42);
}

.vehicle-card:hover .vehicle-img {
    /*transform: scale(1.06);*/
}

.vehicle-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    bottom: -25px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    background: #fff;
    object-fit: cover;
}

.vehicle-info {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 12px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vehicle-title-row {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.vehicle-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #181818;
    margin-right: 8px;
    white-space: nowrap;
}

.vehicle-title-ellipsis {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-sub {
    color: #a2aec2;
    font-size: 0.87rem;
    font-weight: 400;
    margin-left: 3px;
   /* max-width: 150px;
    overflow: hidden;*/
    text-overflow: ellipsis;
    white-space: wrap;
}

.vehicle-sub-ellipsis {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-row-attr {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #181818;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.vehicle-row-attr .icon {
    color: #333;
    font-size: 1.13em;
}

.vehicle-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
        padding-top: 10px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
}

.dealer {
    font-size: 0.875rem;
    color: #181818;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 65%;
}

.vehicle-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #181818;
    margin-left: auto;
    margin-right: 12px;
    white-space: nowrap;
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 9px !important;
    font-weight: 600 !important;
    padding: 3px 8px 2px 8px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    margin-right: 7px;
    margin-bottom: 2px;
    vertical-align: middle;
    text-transform: uppercase;
}

.badge-used {
    background: #181818;
    color: #fff;
}

.badge-new {
    background: var(--main-blue);
    color: #fff;
}

/* Button */
.vehicle-btn {
    display: inline-flex;
    align-items: center;
    background: var(--main-blue);
    color: #fff;
    font-size: .8rem !important;
    font-weight: 500;
    border-radius: 25px;
    padding: 5px 18px 5px 18px;
    margin-left: 5px;
    border: none;
    text-decoration: none;
    transition: background 0.18s;
    white-space: nowrap;
    cursor: pointer;
    gap: 7px;
}

.vehicle-btn:hover{
    color: #fff;
}
.vehicle-btn i {
    font-size: 1.1em;
}

/* Footer Button */
.vehicle-section-footer {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}

.vehicle-main-btn {
    background: #ececec;
    color: #181818;
    border: none;
    border-radius: 30px;
    padding: 16px 42px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.17s;
}

.vehicle-main-btn:hover{
    background: var(--main-blue);
    color: #fff;
}

/* ==================== PARTNER SECTION ==================== */
.partner-section {
    margin-top: 38px;
    margin-bottom: 32px;
    /*background: #fafbfc;*/
    border-radius: 0 0 0 0;
    padding: 0 0 40px 0;
}

.partner-cards-row {
    display: flex;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 30px;
    justify-content: center;
    background: #fafbfc;
}

.partner-promo {
    border-left: 4px solid var(--main-blue);
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 12px rgba(50, 80, 170, 0.03);
    padding: 22px 32px 18px 26px;
    flex: 1 1 0;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    border-top: 4px solid transparent;
    position: relative;
    min-width: 0;
    cursor: pointer;
    transition: border-color 0.23s, box-shadow 0.17s;
}

.partner-promo.active {
    /* border-top: 4px solid var(--main-blue);
    box-shadow: 0 8px 28px 0 rgba(70, 100, 160, .08);*/
}

.promo-icon {
    font-size: 1.3rem;
    color: var(--main-blue);
    margin-top: 4px;
    flex-shrink: 0;
}

.promo-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #181818;
}

.promo-title .promo-highlight {
    color: var(--main-blue);
    font-weight: 800;
}

.promo-desc {
    font-size: 0.875rem;
    color: #5e6c7d;
    font-weight: 400;
    margin-top: 2px;
}

.promo-arrow {
    margin-left: auto;
    font-size: 1.09rem;
    color: #181818;
    align-self: center;
}

.partner-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 42px 0 0 0;
    font-style: italic;
}

.partner-sub {
    color: #000;
    font-size: 0.875rem;
    ;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 1px;
}

.partner-list {
    margin-top: 24px;
}

.partner-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(60, 60, 60, 0.08);
    padding: 14px 18px;
    margin-bottom: 14px;
    gap: 18px;
    position: relative;
}

.partner-thumb {
   /* width: 125px;
    min-width: 125px;*/
    height: 130px;
    border-radius: 5px;
    overflow: hidden;
    background: #f3f3f3;
    margin-right: 5px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.partner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partner-thumb-badge {
    position: absolute;
    top: 5px;
    left: 6px;
    background: #181818;
    color: #fff;
    font-size: 8.5px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    opacity: 0.94;
}

.partner-info {
    flex: 1 1 0;
    min-width: 0;
    margin-right: 5px;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #181818;
    letter-spacing: .1px;
    margin-bottom: 3px;
}

.partner-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #181818;
    font-size: 0.875rem;
    font-weight: 400;
}

.partner-badge {
    background: #ececec;
    color: #181818;
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.dot {
    color: #b1b1b1;
    font-size: 1.3em;
    margin: 0 4px;
}

.partner-link {
    color: var(--main-blue);
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 20px;
    margin-left: 12px;
    text-decoration: none;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: text-decoration 0.2s;
}

.partner-link:hover {
    text-decoration: underline;
}

.partner-price {
    font-size: 1.675rem;
    font-weight: 900;
    color: #000;
    margin-left: auto;
    margin-right: 16px;
    white-space: nowrap;
    min-width: 110px;
    text-align: right;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    background: var(--main-blue);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 22px;
    padding: 7px 18px;
    border: none;
    text-decoration: none;
    transition: background 0.18s;
    white-space: nowrap;
    cursor: pointer;
    gap: 6px;
}
.partner-btn:hover{
    color: #fff;
}
.partner-btn i {
    font-size: 1.06em;
}

.partner-footer-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 30px;
    background: #fff;
    padding: 28px 0 24px 0;
    border-radius: 7px;
    box-shadow: 0 2px 12px rgba(60, 60, 60, 0.04);
    justify-content: right;
}

.partner-logo-img {
    width: 170px;
    height: 84px;
    object-fit: contain;
    border-radius: 6px;
    background: #000;
}

.partner-main-btn {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px 36px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.17s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-main-btn b {
    font-weight: 800;
}

.partner-main-btn i {
    font-size: 1.22em;
}

/* ==================== HERO SECTION ==================== */
.hero-section.container {
    margin-top: 28px;
    margin-bottom: 16px;
    padding: 0;
}

.hero-banner {
    display: flex;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    min-height: 320px;
    box-shadow: none;
}

.hero-banner-left {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    background: #f3f3f3;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    max-height: 330px;
    object-fit: cover;
    display: block;
}

.hero-banner-caption {
    position: absolute;
    bottom: 22px;
    left: 28px;
    color: #fff;
    font-size: 1.28rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(30, 30, 30, .16);
    z-index: 2;
    letter-spacing: 0.1px;
    max-width: 80%;
}

.hero-banner-right {
    flex: 1 1 0;
    min-width: 0;
    background: var(--main-blue);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.hero-main-head {
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 12px;
    margin-top: 10px;
    letter-spacing: .2px;
}

.hero-main-sub {
    font-size: 1.12rem;
    font-weight: 600;
    /*margin-bottom: 26px;*/
}

.hero-main-logo {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #fff;
}

.hero-dot {
    color: #fff;
    font-weight: 400;
    font-size: 1.16rem;
    letter-spacing: 0;
}

.hero-main-tags {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.hero-tag {
    background: #2065af;
    color: #fff;
    border-radius: 19px;
    padding: 7px 21px;
    font-size: 0.875rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 10px rgba(50, 120, 180, 0.05);
}

.hero-info-bg {
    background: #fafbfc;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 22px;
}

.hero-info-row.container {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.hero-info-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(60, 100, 160, .06);
    padding: 22px 32px 18px 26px;
    flex: 1 1 0;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    border-left: 4px solid #e1ecfb;
    min-width: 0;
    cursor: pointer;
    transition: border-color 0.23s, box-shadow 0.17s;
    margin-top: 22px;
    border-left: 4px solid var(--main-blue);
}

/*.hero-info-card:first-child {
    border-left: 4px solid var(--main-blue);
}*/

.hero-info-icon {
    font-size: 1.5rem;
    color: #181818;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-info-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #181818;
}

.hero-info-title .blue {
    color: var(--main-blue);
    font-weight: 800;
}

.hero-info-desc {
    font-size: 0.875rem;
    color: #5e6c7d;
    font-weight: 400;
    margin-top: 2px;
}

.hero-info-arrow {
    margin-left: auto;
    font-size: 1.11rem;
    color: #181818;
    align-self: center;
}

/* ==================== DEALER SECTION ==================== */
.dealer-section.container {
    margin-top: 22px;
    margin-bottom: 50px;
    padding: 0;
}

.dealer-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 14px;
    gap: 16px;
}

.dealer-title {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    margin: 0;
}

.dealer-sub {
    font-size: .875rem;
    color: #9aa4b0;
    margin-top: 2px;
    margin-bottom: 0;
}

.dealer-find-btn {
    background: #181818;
    color: #fff;
    font-size: 0.675rem;
    font-weight: 400;
    border-radius: 24px;
    padding: 7px 22px;
    text-decoration: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: background 0.15s;
}

.dealer-find-btn i {
    font-size: 1.13em;
}

.dealer-find-btn:hover {
    background: var(--main-blue);
    color: #fff;
}

.dealer-cards-row {
    display: flex;
    gap: 34px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.dealer-card {
    flex: 1 1 210px;
    min-width: 220px;
    max-width: 295px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(60, 60, 60, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    transition: box-shadow 0.2s, transform 0.17s;
    position: relative;
}

.dealer-card:hover {
    box-shadow: 0 12px 30px 0 rgba(90, 110, 200, 0.13);
    transform: translateY(-3px) scale(1.013);
}

.dealer-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.dealer-card-content {
    padding: 19px 19px 16px 19px;
    position: relative;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}

.dealer-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #181818;
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 1.23;
}

.dealer-card-stock {
    font-size: 1.02rem;
    color: #181818;
    font-weight: 500;
    margin-bottom: 9px;
}

.dealer-stock-num {
    color: var(--main-blue);
    font-weight: 800;
    font-size: 1.1em;
}

.dealer-card-address {
    color: #656d78;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.dealer-card-arrow {
    position: absolute;
    right: 16px;
    bottom: 15px;
    color: #181818;
    font-size: 1.2rem;
    background: #fff;
    padding: 2px 5px;
    border-radius: 50%;
    transition: background 0.14s;
    cursor: pointer;
}

.dealer-card:hover .dealer-card-arrow {
    background: #f3f6f9;
}

.dealer-btn-row {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.dealer-search-btn {
    background: #ececec;
    color: #181818;
    border: none;
    border-radius: 25px;
    padding: 17px 43px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.17s;
}

.dealer-search-btn:hover {
    background: var(--main-blue);
    color: #fff;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    background: #fafbfc;
    padding: 44px 0 48px 0;
    margin: 0;
}

.newsletter-row.container {
    display: flex;
    align-items: center;
    gap: 46px;
    justify-content: flex-start;
    max-width: 1280px;
    padding: 0;
}

.newsletter-left {
    flex: 1 1 0;
    min-width: 0;
}

.newsletter-logo {
    font-size: 2.22rem;
    font-weight: 800;
    color: var(--main-blue);
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.gocar-blue {
    color: var(--main-blue);
    font-weight: 800;
}

.newsletter-black-badge {
    background: #181818;
    color: #fff;
    font-size: 0.775rem;
    font-weight: 700;
    padding: 4px 14px 3px 12px;
    border-radius: 5px;
    letter-spacing: 0.4px;
    font-style: italic;
    margin-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-black-badge i {
    font-size: 1.2em;
    margin-left: 8px;
}

.newsletter-bold {
    font-size: 1.12rem;
    font-weight: 700;
    margin-top: 5px;
    padding-left: 10px;
    margin-bottom: 2px;
    border-left: 5px solid var(--main-blue);
}

.newsletter-italic {
    font-style: italic;
    font-weight: 600;
}

.newsletter-yellow {
    color: #f7b223;
    font-style: normal;
    font-weight: 800;
}

.newsletter-desc {
    color: #8b8f98;
    font-size: 0.875rem;
    margin-top: 15px;
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1 1 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    max-width: 590px;
}

.newsletter-input {
    border: 2px solid var(--main-blue);
    border-radius: 40px 0 0 40px;
    padding: 10px 27px;
    font-size: 0.875rem;
    outline: none;
    width: 60%;
    transition: border 0.18s;
}

.newsletter-input:focus {
    border: 2px solid #1a3765;
}

.newsletter-btn {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 0 40px 40px 0;
    padding: 10px 27px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.17s;
    display: flex;
    align-items: center;
    gap: 9px;
}

.newsletter-btn:hover {
    background: var(--main-blue);
}

.newsletter-btn i {
    font-size: 1.13em;
}

/* ==================== NEWS SECTION ==================== */
.news-section.container {
    margin-top: 28px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
}

.news-row {
    display: flex;
    gap: 44px;
    align-items: flex-start;
}

.news-main-col {
    flex: 1 1 0;
    min-width: 0;
}

.news-main-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 10px;
}

.news-main-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    margin: 0;
}

.news-main-sub {
    color: #817b7b;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 8px;
}

.news-main-btn {
    background: #181818;
    color: #fff;
    border-radius: 22px;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 7px 22px;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
    transition: background 0.13s;
}

.news-main-btn i {
    font-size: 1.08em;
}

.news-main-btn:hover {
    background: var(--main-blue);
    color: #fff;
}

.news-main-card {
    background: #fff;
    box-shadow: 0 2px 14px rgba(60, 60, 60, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.news-main-imgwrap {
    position: relative;
}

.news-main-img {
    width: 100%;
    max-height: 265px;
    object-fit: cover;
    display: block;
}

.news-badge {
    position: absolute;
    left: 0;
    bottom: 15px;
    font-size: 0.775rem;
    font-weight: 500;
    font-style: italic;
    background: var(--main-blue);
    color: #fff;
    padding: 4px 14px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    z-index: 2;
}

.news-badge-politics {
    background: var(--main-blue);
}

.news-badge-oldtimers {
    background: var(--main-blue);
}

.news-main-content {
    padding: 22px 18px 14px 20px;
}

.news-main-headline, .news-main-headline a {
    font-size: 1.47rem;
    font-weight: 800;
    color: #181818;
    margin-bottom: 8px;
    line-height: 1.19;
}

.news-main-lead {
    color: #181818;
    font-size: 0.875rem;
    margin-bottom: 13px;
    line-height: 1.33;
}

.news-main-meta {
    color: #9fa8b1;
    font-size: 0.875rem;
    display: flex;
    gap: 11px;
    align-items: center;
    margin-top: 8px;
}

.meta-dot {
    margin: 0 3px;
    color: #d0d0d0;
}

.meta-gray {
    color: #999;
}

.news-list-card {
    display: flex;
    background: #fff;
    box-shadow: 0 2px 14px rgba(60, 60, 60, 0.06);
    overflow: hidden;
    margin-bottom: 8px;
    align-items: stretch;
    min-height: 96px;
}

.news-list-imgwrap {
    position: relative;
    width: 135px;
    min-width: 135px;
    height: 94px;
    overflow: hidden;
    background: #e9e9e9;
}

.news-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-content {
    padding: 11px 10px 9px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.news-list-title, .news-list-title a {
    font-size: 1.02rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 2px;
    line-height: 1.15;
}

.news-list-desc {
    color: #3b3c3c;
    font-size: 1.03rem;
    margin-bottom: 4px;
}

.news-list-meta {
    color: #b6b9bf;
    font-size: .98rem;
}

.news-main-footer {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 4px;
}

.news-all-btn {
    background: #ececec;
    color: #181818;
    border: none;
    border-radius: 25px;
    padding: 15px 37px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.17s;
}

.news-all-btn:hover {
    background: var(--main-blue);
    color: #fff;
}

/* Right: In het Nieuws */
.news-right-col {
    flex: 0 0 420px;
    min-width: 340px;
    max-width: 420px;
    margin-left: 18px;
}

.news-right-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.news-right-header div {
    display: flex;
    flex-direction: column;
}

.news-right-icon {
    color: var(--main-blue);
    font-size: 1.4rem;
}

.news-right-title {
    font-size: 1.33rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: .7px;
    margin-right: 6px;
}

.news-right-sub {
    color: #817b7b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 0;
}

.news-right-list {
    border-left: 3px solid #e5e9ef;
    margin-left: 10px;
    padding-left: 22px;
    padding-top: 7px;
}

.news-right-item {
    margin-bottom: 18px;
    padding-bottom: 13px;
    border-bottom: 1px dashed #e2e2e2;
    position: relative;
    padding-left: 5px;
}

.news-right-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-right-time {
    font-size: 0.875rem;
    color: var(--main-blue);
    font-weight: 600;
    margin-bottom: 0;
}

.news-right-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #181818;
    line-height: 1.24;
    padding-top: 5px;
}

/* Timeline dot */
.news-right-item:before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border: 2px solid var(--main-blue);
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: -30px;
    top: 8px;
    z-index: 2;
}

/* ==================== FESTIVAL BANNER ==================== */
.festival-banner-bg {
    background: #f8f9fa;
    padding: 30px 0 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.festival-banner.container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    max-width: 1280px;
}

.festival-title {
    font-size: 2.6rem;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-right: 30px;
}

.festival-black {
    color: #000;
    font-weight: 800;
}

.festival-blue {
    color: #4d90d5;
    font-family: 'Dancing Script', cursive, sans-serif;
    font-weight: 600;
    font-size: 2.3rem;
    letter-spacing: 0.1em;
}

.festival-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    flex: 1 1 0;
}

.festival-btn {
    background: #fff;
    color: #181818;
    border: 2px solid #ededed;
    border-radius: 30px;
    padding: 16px 33px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 9px rgba(80, 110, 160, .05);
    transition: background 0.16s, color 0.14s;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 9px;
}

.festival-btn b {
    font-weight: 800;
}

.festival-btn i {
    font-size: 1.09em;
    margin-left: 5px;
}

.festival-btn:hover {
    background: var(--main-blue);
    color: #fff;
    border-color: var(--main-blue);
}

/* ==================== ABOUT SECTION ==================== */
.about-section.container {
    margin-top: 54px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-inner {
    margin: 0 auto;
}

.about-title {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 900;
    margin: 0 0 4px 0;
}

.about-sub {
    color: #a2aec2;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.about-desc {
    color: #181818;
    font-size: 0.975rem;
    margin-bottom: 28px;
    margin-top: 14px;
    line-height: 1.58;
    font-weight: 400;
}

.about-btn {
    display: block;
    margin: 0 auto;
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 33px;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.16s;
    box-shadow: 0 1px 7px rgba(50, 80, 140, .08);
}

.about-btn i {
    margin-right: 8px;
}

.about-btn:hover {
    background: #222;
}

/* ==================== GOCAR DATA SECTION ==================== */
.gocar-data-bg {
    background: #fafbfc;
    padding: 34px 0 34px 0;
    margin-top: 54px;
    border-top: 1px solid #f0f0f0;
}

.gocar-data-row.container {
    display: flex;
    align-items: center;
    gap: 38px;
    max-width: 1280px;
    justify-content: flex-start;
}

.gocar-data-logo {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--main-blue);
    margin-right: 18px;
    min-width: 230px;
}

.gocar-data-text {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--main-blue);
    margin-left: 6px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.gocar-blue {
    color: var(--main-blue) !important;
}

.gocar-data-content {
    flex: 1 1 0;
    min-width: 0;
}

.gocar-data-title {
    font-size: 1.13rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.gocar-data-highlight {
    color: var(--main-blue);
    font-size: 0.875rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 10px;
}

.gocar-data-desc {
    color: #9aa4b0;
    font-size: 0.875rem;
    font-weight: 400;
}

.gocar-data-btn {
    margin-left: auto;
    background: #181818;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 36px;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.16s;
    box-shadow: 0 2px 8px rgba(30, 30, 60, .07);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gocar-data-btn i {
    font-size: 1.11em;
}

.gocar-data-btn:hover {
    background: var(--main-blue);
    color: #fff;
}

/* ==================== POPULAR SECTION ==================== */
.popular-section.container {
    max-width: 1300px;
    margin: 42px auto 40px auto;
    padding: 0 20px;
}

.popular-block {
    margin-bottom: 30px;
}

.popular-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 0;
}

.popular-sub {
    color: #b3b9c5;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 19px;
    margin-top: 2px;
}

.popular-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 38px 68px;
    margin-bottom: 22px;
    margin-top: 50px;
    justify-content: flex-start;
    align-items: center;
}

.brand-item {
    gap: 13px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    text-align: center;
    color: #181818;
    min-width: 150px;
}
.brand-item a:hover{
    color: var(--main-blue);
}

.brand-item img {
    height: 43px;
    width: auto;
    display: block;
    filter: grayscale(100%);
}

.popular-hr {
    border: none;
    border-top: 1px solid #e7e7e7;
    margin: 35px 0;
}

.popular-models {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #181818;
    margin-bottom: 25px;
    margin-top: 12px;
}

.popular-models b {
    font-weight: 900;
    margin-right: 2px;
}

.popular-buttons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    max-width: 700px;
    margin: 38px auto 0 auto;
}

.popular-btn {
    background: #181818;
    color: #fff;
    border: none;
    border-radius: 36px;
    padding: 15px 0;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.16s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(30, 30, 30, 0.08);
}

.popular-btn:hover {
    background: var(--main-blue);
    color: #fff;
}

.popular-btn i {
    font-size: 1.14em;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #f5f6f8;
    color: #181818;
    font-family: inherit;
    padding-top: 28px;
}

.footer-main.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

.footer-logo-col {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.footer-logo {
    font-size: 3rem;
    color: #b9bfc4;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-logo img {
    max-width: 75%;
}

.footer-cols {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 48px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 24px;
}

.footer-col {
    min-width: 180px;
    flex: 1 1 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px 0;
}

.footer-col li {
    margin-bottom: 5px;
}

.footer-col li a {
    color: #000;
    transition: 0.3s ease all;
}

a:hover {
    text-decoration: none;
}
.footer-col a:hover{
    opacity: 0.6;
    text-decoration: none!important;
}

.footer-badge {
    display: inline-block;
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 0.656rem;
    font-weight: 400;
    margin-left: 10px;
}

.footer-badge-green {
    background: #38d96f;
    color: #fff;
}

.footer-badge-blue {
    background: #4d86e5;
    color: #fff;
}

.footer-subscribe-col {
    min-width: 260px;
    max-width: 320px;
}

.footer-desc {
    color: #b9bfc4;
    font-size: .97rem;
    margin: 5px 0 13px 0;
}

.footer-newsletter {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-newsletter input[type="email"] {
    border: 2px solid #4d86e5;
    border-radius: 30px 0 0 30px;
    padding: 10px 20px;
    font-size: 0.875rem;
    width: 160px;
    outline: none;
    transition: border 0.15s;
    margin-right: -2px;
    background: #fff;
}

.footer-newsletter input[type="email"]:focus {
    border-color: #222;
}

.footer-newsletter-btn {
    border: 2px solid #4d86e5;
    background: #fff;
    color: #181818;
    border-radius: 0 30px 30px 0;
    padding: 10px 16px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.16s;
    margin-left: -2px;
}

.footer-newsletter-btn i {
    color: #181818;
}

.footer-newsletter-btn:hover {
    background: #4d86e5;
    color: #fff;
}

.footer-social-label {
    color: #181818;
    font-size: 0.875rem;
    margin-bottom: 10px
}

.footer-socials {
    display: flex;
    gap: 18px;
    margin-bottom: 0;
    margin-top: 2px;
}

.footer-socials a {
    background: #181818;
    color: #fff;
    font-size: 0.875rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: background 0.14s, color 0.15s;
}

.footer-socials a:hover {
    background: #4d86e5;
    color: #fff;
}

.footer-partners.container {
    max-width: 1350px;
    margin: 0 auto 0 auto;
    padding: 0;
    font-size: 0.875rem;
    color: #181818;
}

.footer-partners-group {
    margin-top: 12px;
    margin-bottom: 18px;
}

.footer-partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-top: 6px;
    margin-bottom: 2px;
    color: #222;
    font-size: .99rem;
}

.footer-partners-list span {
    opacity: .9;
}

.footer-bottom {
    background: #181818;
    color: #fff;
    font-size: .98rem;
    margin-top: 0;
    padding: 14px 0 8px 0;
}

.footer-bottom-row.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 1350px;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 0.775rem;
    color: #fff;
}

.footer-bottom-links a {
    color: #fff;
}

.footer-bottom-links a:hover {
    text-decoration: none;
}

a {
    text-decoration: none;
}

.footer-col b {
    text-transform: uppercase;
}

.footer-bottom-links i {
    margin-right: 5px;
}

.footer-bottom-links span {
    opacity: .98;
    cursor: pointer;
}

.footer-bottom-links span:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: #fff;
    opacity: .83;
    font-size: 0.775rem;
}

.footer-copyright a {
    color: #fff;
}

.pagination-container{
    margin-top: 50px;
}
.page-item.active .page-link{
    background-color: var(--main-blue);
    border-color: var(--main-blue);
}
.page-link{
    color: var(--main-blue);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1100px) {
    .container {
        padding: 0 12px;
    }

    .search-filters {
        gap: 10px;
    }

    .filter-col {
        min-width: 220px;
        max-width: 48%;
        flex: 1 1 45%;
    }

    .vehicle-row {
        flex-direction: column;
        gap: 36px;
        align-items: stretch;
    }

    .vehicle-col {
        width: 100%;
    }

    .vehicle-card {
        height: auto;
        min-height: 170px;
    }

    .vehicle-img {
        min-height: 120px;
        height: 120px;
        max-height: 120px;
    }

    .footer-cols {
        flex-wrap: wrap;
        gap: 22px;
    }

    .footer-main.container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 8px;
    }

    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-left {
        width: 100%;
    }

    .main-nav {
        margin-left: 0;
        gap: 18px;
    }

    .main-content {
        margin-top: 18px;
    }

    .search-filters {
        gap: 10px;
    }

    .filter-col {
        min-width: 190px;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .footer-cols {
        flex-direction: column;
        align-items: left;
    }

    .footer-col,
    .footer-subscribe-col {
        min-width: 0;
        max-width: 100%;
        text-align: left;
    }

    .footer-logo {
        font-size: 2.1rem;
    }

    .footer-partners-list {
        gap: 10px 18px;
        font-size: .91rem;
    }

    .footer-bottom-row.container {
        flex-direction: column;
        gap: 7px;
    }

    .dealer-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .dealer-cards-row {
        gap: 14px;
    }

    .dealer-section.container {
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .newsletter-section {
        padding: 26px 0 28px 0;
    }

    .newsletter-logo {
        font-size: 1.44rem;
    }

    .popular-brands {
        gap: 28px 28px;
    }

    .brand-item {
        min-width: 100px;
    }

    .popular-models {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 32px;
    }

    .popular-btn {
        font-size: .98rem;
        padding: 15px 0;
    }

    .popular-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 700px) {
    .sticky-header{
        top: -300px;
    }
    .bellow-badge .d-flex{
        padding-left: 10px;
        gap: 15px;
    }
    .font-title-price{
        margin-bottom: 15px;
    }
    .extra_web .card{
        flex-direction: column;
    }
    .gocar-data-row.container{
        flex-direction: column;
    }
    .header .container {
        flex-direction: row;
        align-items: center;
    }
    .partner-row{
        flex-direction: column;
        align-items: flex-start;
    }
    .partner-price{
        min-width: 100%;
    text-align: left;
    }
    .vehicle-sub{
        white-space: wrap;
    }
    main{
            margin: 0 10px
    }
    .partner-link{
        margin:0;
    }
    .partner-thumb{
        width: 100%;
        height: auto;
    }
    .hero-banner{
        flex-direction: column;
    }

    .header-left {
        flex: 1;
    }

    .menu-btn {
        display: inline-block;
    }

    .main-nav {
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 62px;
        left: 0;
        width: 100vw;
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
        margin-left: 0;
        gap: 0;
        transition: max-height 0.3s;
    }

    .main-nav.show {
        max-height: 350px;
        overflow-y: scroll;
        padding: 12px 0;
        gap: 18px;
        z-index: 9999;
        border-bottom: 1px solid #ececec;
    }

    .logo img {
        max-width: 100%;
    }

    .main-nav a {
        padding: 16px 28px;
        width: 100vw;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-content {
        margin-top: 24px;
    }

    .search-filters {
        flex-direction: column;
        gap: 10px;
    }

    .filter-col {
        max-width: none;
        width: 100%;
        flex: 1 1 100%;
    }

    .results-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        height: 54px;
    }

    .vehicle-section {
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .vehicle-card {
        min-height: 110px;
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 22px;
    }

    .vehicle-img {
        width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        border-radius: 7px 7px 0 0;
        margin-right: 0;
    }

    .vehicle-info {
        padding: 12px 8px 6px 8px;
    }

    .vehicle-avatar {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }

    .hero-section.container {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-banner {
        border-radius: 0;
    }

    .hero-banner-caption {
        font-size: 0.875rem;
        left: 14px;
        bottom: 11px;
    }

    .hero-main-head {
        font-size: 1.37rem;
    }

    .hero-main-sub {
        font-size: 1rem;
    }

    .hero-main-logo {
        font-size: 1.3rem;
    }

    .hero-main-tags {
        gap: 7px;
    }

    .hero-tag {
        padding: 6px 11px;
        font-size: 0.98rem;
    }

    .hero-banner-right {
        padding: 18px 8px 18px 8px;
    }

    .hero-info-row.container {
        flex-direction: column;
        gap: 13px;
    }

    .hero-info-card {
        padding: 15px 14px 14px 12px;
        margin-top: 13px;
    }

    .dealer-title {
        font-size: 1.15rem;
    }

    .dealer-cards-row {
        flex-direction: column;
    }

    .dealer-card {
        max-width: 100%;
    }

    .dealer-card-content {
        padding: 13px 10px 12px 10px;
    }

    .dealer-img {
        height: 115px;
    }

    .dealer-search-btn {
        padding: 11px 23px;
        font-size: 1rem;
    }

    .newsletter-section {
        padding: 12px 0 13px 0;
    }

    .newsletter-row.container {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-logo {
        font-size: 1.13rem;
    }

    .newsletter-input,
    .newsletter-btn {
        font-size: .97rem;
        padding: 10px 14px;
    }

    .festival-banner.container {
        flex-direction: column;
        gap: 12px;
    }

    .festival-title {
        font-size: 1.6rem;
    }

    .festival-blue {
        font-size: 1.2rem;
    }

    .festival-desc {
        font-size: .95rem;
    }

    .festival-btn {
        font-size: .97rem;
        padding: 9px 14px;
    }

    .about-title {
        font-size: 1.1rem;
    }

    .about-desc {
        font-size: .97rem;
    }

    .about-btn {
        font-size: .97rem;
        padding: 9px 14px;
    }

    .gocar-data-logo {
        font-size: 1.22rem;
        min-width: 0;
    }

    .gocar-data-text {
        font-size: 1.1rem;
    }

    .gocar-data-btn {
        font-size: .98rem;
        padding: 9px 13px;
    }

    .gocar-data-bg {
        padding: 16px 0;
        margin-top: 18px;
    }

    .news-main-title {
        font-size: 1.25rem;
    }

    .news-main-headline {
        font-size: 0.875rem;
    }

    .news-main-content {
        padding: 12px 10px 11px 12px;
    }

    .news-main-col,
    .news-right-col {
        padding-left: 0;
        padding-right: 0;
    }

    .news-list-imgwrap {
        width: 70px;
        min-width: 70px;
        height: 60px;
    }

    .news-list-content {
        padding: 6px 7px 7px 8px;
    }

    .footer-main.container,
    .footer-partners.container {
        padding: 0 4vw;
    }

    .footer-partners-group {
        font-size: .91rem;
    }

    .footer-bottom {
        font-size: .91rem;
    }

    .footer-logo {
        font-size: 1.28rem;
    }
}

@media (max-width: 600px) {
    .news-section.container {
        padding: 0 4vw;
    }

    .news-row {
        flex-direction: column;
        gap: 15px;
    }

    .news-right-header {
        font-size: 0.875rem;
    }

    .news-main-btn {
        padding: 6px 12px;
        font-size: 0.98rem;
    }

    .news-main-footer {
        margin-top: 7px;
    }

    .news-all-btn {
        padding: 8px 14px;
        font-size: .98rem;
    }

    .popular-section.container {
        padding: 0 4vw;
    }

    .popular-brands {
        gap: 16px 12px;
    }

    .brand-item {
        font-size: .97rem;
    }

    .popular-models {
        grid-template-columns: 1fr;
    }

    .popular-buttons-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .popular-btn {
        font-size: .97rem;
        padding: 11px 0;
    }
}

@media (max-width: 480px) {
    .vehicle-card {
        height: auto;
        min-height: 90px;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 26px;
    }

    .vehicle-img {
        width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
    }

    .partner-title {
        font-size: 0.875rem;
    }

    .partner-link {
        font-size: 0.94rem;
    }

    .partner-price {
        font-size: 1.08rem;
    }

    .partner-promo {
        font-size: 95%;
    }

    .partner-btn {
        font-size: 0.84rem;
    }
}