.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 15px; color: var(--black);}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-header.dark h2, .section-header.dark p { color: var(--white); }
.section-header.dark h2 span { color: #ff4d4d !important; }
.hero { background: var(--white); padding: 60px 0; border-bottom: 1px solid var(--border-light); }
.hero-inner { display: flex; gap: 40px; flex-wrap: wrap; align-items: stretch; }
.hero-form { 
    background: var(--light-grey); padding: 40px; border-radius: 8px; 
    border: 1px solid var(--border-light); flex: 1; min-width: 320px; 
    border-top: 5px solid var(--primary); 
}
.hero-title { font-size: 1.8rem; margin-bottom: 5px; line-height: 1.2; text-transform: uppercase; font-weight: 900;}
.hero-subtitle { color: var(--text-muted); margin-bottom: 20px; }
.tab-nav { display: flex; gap: 20px; border-bottom: 2px solid #ddd; margin: 30px 0 25px; }
.tab-btn { 
    background: none; border: none; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; 
    font-weight: 800; color: var(--text-muted); padding-bottom: 12px; cursor: pointer; 
    text-transform: uppercase; display: flex; align-items: center; gap: 8px; letter-spacing: 1px;
}
.tab-btn.active { color: var(--primary); border-bottom: 3px solid var(--primary); margin-bottom: -2px; }
.form-step { opacity: 0; visibility: hidden; position: absolute; pointer-events: none; transition: opacity 0.3s; }
.form-step.active { opacity: 1; visibility: visible; position: relative; pointer-events: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.full-width-col { grid-template-columns: 1fr; }
.form-group label { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; font-family: 'Montserrat', sans-serif; text-transform: uppercase; margin-bottom: 8px; color: var(--black); }
.form-group label .material-icons-round { font-size: 1.1rem; color: var(--primary); }
.req { color: var(--primary); }
.form-control { 
    width: 100%; padding: 14px; border: 1px solid #ccc; border-radius: 4px; 
    font-family: 'Inter', sans-serif; font-size: 0.95rem; background: var(--white); transition: var(--transition); color: var(--text-main);
}
.form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(168,2,2,0.1);}
textarea.form-control { resize: vertical; min-height: 100px; }
.spacing-bottom { margin-bottom: 15px; }
.spacing-bottom-lg { margin-bottom: 20px; }
.btn-submit { 
    background: var(--primary); color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 800; 
    font-size: 1rem; text-transform: uppercase; padding: 18px; width: 100%; border: none; border-radius: 4px; 
    cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; transition: var(--transition); margin-top: 15px;
}
.btn-submit:hover { background: var(--black); }
.hero-content { 
    flex: 0.8; min-width: 320px; background: var(--black); color: var(--white); 
    padding: 50px 40px; border-radius: 8px; 
    background-image: linear-gradient(135deg, rgba(168,2,2,0.15) 0%, rgba(5,5,5,1) 100%); 
    display: flex; flex-direction: column;
}
.hero-content-title { font-size: 2rem; text-transform: uppercase; margin-bottom: 20px; line-height: 1.2; color: var(--white);}
.desc-box { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 8px; border-left: 3px solid var(--primary); margin-bottom: 30px; }
.desc-text { font-size: 0.95rem; color: #d1d5db; line-height: 1.7;}
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 40px;}
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.9rem; color: #e5e7eb; }
.check-list li .material-icons-round { color: var(--primary); font-size: 1.3rem; }
.btn-outline { 
    background: transparent; border: 2px solid var(--white); color: var(--white); 
    padding: 14px 28px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 800; 
    text-transform: uppercase; cursor: pointer; transition: var(--transition); letter-spacing: 1px; 
    display: inline-flex; align-items: center; gap: 10px; width: 100%; justify-content: center; margin-top: auto;
}
.btn-outline:hover { background: var(--primary); border-color: var(--primary); }
.brands { padding: 60px 0; background: var(--light-grey); border-bottom: 1px solid var(--border-light); }
.brands-title { text-align: center; font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 40px; font-weight: 800;}
.brands-slider { display: flex; overflow: hidden; white-space: nowrap; }
.marquee-track-inner { display: flex; align-items: center; animation: slide 30s linear infinite; }
.marquee-track-inner:hover { animation-play-state: paused; }
.brand-logo { 
    display: flex; align-items: center; justify-content: center; 
    width: 160px; height: 80px; margin: 0 30px; 
    transition: var(--transition); cursor: pointer; opacity: 0.5; filter: grayscale(100%);
}
.brand-logo img { max-width: 100%; max-height: 60px; object-fit: contain; }
.brand-logo:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }
@keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Premium Cars */
.premium-section { background: #050505; padding: 100px 0; color: #ffffff; overflow: hidden; border-top: 3px solid #d4af37; background-image: radial-gradient(circle at 50% 0%, #1a0505 0%, #050505 70%); }
.premium-header-wrap { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
@media(max-width: 768px) { .premium-header-wrap { flex-direction: column; align-items: center; gap: 20px; text-align: center; } }

.slider-controls { display: flex; gap: 12px; }
.slider-btn { background: #121212; border: 1px solid #333; color: #d4af37; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; position: relative; }
.slider-btn:hover { background: #a80202; border-color: #a80202; color: #ffffff; transform: scale(1.1); box-shadow: 0 8px 20px rgba(168,2,2,0.4); }

.premium-swiper-container { width: 100%; padding-bottom: 30px; overflow: hidden; }

.premium-card { 
    display: flex; flex-direction: column; height: 100%;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%); 
    border: 1px solid #222; border-radius: 16px; 
    transition: all 0.4s ease; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.premium-card:hover { border-color: #d4af37; box-shadow: 0 20px 40px rgba(212,175,55,0.15); transform: translateY(-10px); }
.premium-card a { text-decoration: none; display: flex; flex-direction: column; height: 100%; }

.premium-img-wrap { position: relative; height: 230px; overflow: hidden; background: #000; border-bottom: 3px solid #a80202; }
.premium-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.premium-card:hover .premium-img-wrap img { transform: scale(1.12); }

.badge-premium { position: absolute; top: 15px; left: 15px; background: rgba(5,5,5,0.9); backdrop-filter: blur(5px); border-left: 3px solid #d4af37; color: #ffffff; padding: 6px 16px; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 1px; display: flex; align-items: center; gap: 6px; z-index: 2; border: 1px solid rgba(212,175,55,0.3); }
.badge-icon { color: #d4af37; font-size: 1.1rem; }

.premium-info { padding: 30px 25px; display: flex; flex-direction: column; flex-grow: 1; }
.premium-title { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: #ffffff; line-height: 1.4; letter-spacing: -0.3px; transition: color 0.3s ease; }
.premium-card:hover .premium-title { color: #d4af37; }

.premium-price { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; font-weight: 900; color: #d4af37; margin-bottom: 25px; letter-spacing: -0.5px; text-shadow: 0 2px 10px rgba(212,175,55,0.2); }

.car-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.spec { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #a1a1aa; font-weight: 600; }
.spec-icon-dark { font-size: 1.1rem; color: #d4af37; }

.btn-premium { display: flex; justify-content: center; align-items: center; gap: 8px; background: #a80202; border: none; color: #ffffff; border-radius: 8px; padding: 14px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; transition: all 0.3s ease; font-size: 0.85rem; margin-top: auto; letter-spacing: 1px; }
.premium-card:hover .btn-premium { background: #d4af37; color: #050505; box-shadow: 0 8px 20px rgba(212,175,55,0.4); }

.normal-section { padding: 100px 0; background: var(--white); border-bottom: 1px solid var(--border-light);}
.normal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.normal-card {
    background: var(--light-grey); border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden;
    transition: var(--transition); display: flex; flex-direction: column;
}
.normal-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--primary); }
.normal-img-wrap { height: 240px; background: #e0e0e0; position: relative; overflow: hidden;}
.normal-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;}
.normal-card:hover .normal-img-wrap img { transform: scale(1.08); }
.normal-info { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.car-title-normal { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; color: var(--black); font-family: 'Montserrat', sans-serif;}
.car-price-normal { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--primary); margin-bottom: 25px; }
.car-specs-normal { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 25px; }
.car-specs-normal .spec { color: var(--text-muted); display: flex; align-items: center; gap: 8px; font-size: 0.9rem;}
.spec-icon-light { color: var(--black); font-size: 1.1rem; }
.btn-normal { 
    display: flex; justify-content: center; align-items: center; gap: 8px; background: var(--white); border: 1px solid #ccc;
    border-radius: 4px; color: var(--black); padding: 16px; font-family: 'Montserrat', sans-serif; 
    font-weight: 800; text-transform: uppercase; transition: var(--transition); margin-top: auto; font-size: 0.9rem;
}
.normal-card:hover .btn-normal { background: var(--black); color: var(--white); border-color: var(--black);}
.perks-section { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; 
    padding: 80px 20px; max-width: 1320px; margin: 0 auto; 
}
.perk-card { 
    background: var(--white); padding: 40px 30px; border-radius: 8px; text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 4px solid transparent; transition: var(--transition); 
}
.perk-card:hover { border-bottom-color: var(--primary); transform: translateY(-5px); }
.perk-icon { 
    width: 70px; height: 70px; background: var(--light-grey); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: var(--transition); 
}
.perk-card:hover .perk-icon { background: var(--primary); }
.perk-icon .material-icons-round { color: var(--primary); font-size: 2.2rem; transition: color 0.3s; }
.perk-card:hover .perk-icon .material-icons-round { color: var(--white); }
.perk-title { font-size: 1.2rem; margin-bottom: 15px; color: var(--black); }
.perk-desc { color: var(--text-muted); font-size: 0.95rem; }
.reviews-section { 
    background: var(--black); color: var(--white); padding: 80px 40px; border-radius: 8px; 
    max-width: 1320px; margin: 0 auto 80px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}
.review-header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.g-icon { width: 45px; height: 45px; }
.b-name { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; }
.b-address { color: #a1a1aa; font-size: 0.9rem; }
.rating-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 4px; border-left: 3px solid #fbbf24; }
.rating-number { font-size:1.2rem; font-weight:800; color:#fff; }
.rating-stars { color:#fbbf24; font-size:1.1rem; letter-spacing:2px; }
.rating-count { font-weight:400; font-size:0.85rem; color:#d1d5db; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.review-item { background: var(--dark-grey); padding: 30px; border-radius: 8px; border-top: 3px solid #333; transition: var(--transition); }
.review-item:hover { border-color: var(--primary); }
.review-item.hidden { 
    max-height: 0; opacity: 0; padding: 0; margin: 0; border: 0; overflow: hidden; pointer-events: none;
}
.reviewer-info { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.reviewer-img { width: 45px; height: 45px; border-radius: 50%; background: #444; }
.reviewer-name { color: var(--white); font-size: 1.1rem; margin-bottom: 2px; font-family: 'Montserrat', sans-serif;}
.stars { color: #fbbf24; letter-spacing: 2px; }
.date { color: #a1a1aa; font-size: 0.85rem; }
.review-text { font-size: 0.95rem; color: #d1d5db; line-height: 1.6; font-style: italic;}
.btn-load-more { display: block; margin: 40px auto 0; background: transparent; border: 2px solid var(--primary); color: var(--white); padding: 14px 30px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.btn-load-more:hover { background: var(--primary); }
.blog-section { padding: 100px 0; background: var(--light-grey); }
.blog-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.blog-card { cursor: pointer; border-radius: 8px; }
.blog-card.featured { position: relative; height: 100%; min-height: 500px; background: var(--black); overflow: hidden; }
.blog-card.featured img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; opacity: 0.6; transition: transform 0.6s; }
.blog-card.featured:hover img { transform: scale(1.05); opacity: 0.4; }
.blog-content { position: absolute; bottom: 0; left: 0; padding: 50px 40px; color: var(--white); width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); }
.blog-featured-title { color: var(--white); font-size: 2.4rem; margin-bottom: 15px; line-height: 1.2; }
.blog-featured-desc { color: #d1d5db; font-size: 1.05rem; }
.blog-side { display: flex; flex-direction: column; gap: 20px; }
.blog-item { display: flex; gap: 25px; align-items: center; cursor: pointer; background: var(--white); border: 1px solid var(--border-light); padding: 20px; border-radius: 8px; transition: var(--transition);}
.blog-item:hover { border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.06); transform: translateX(-5px);}
.blog-item img { width: 160px; height: 140px; object-fit: cover; border-radius: 4px; }
.blog-item-title { font-size: 1.2rem; transition: color 0.3s; margin-bottom: 8px; line-height: 1.3;}
.blog-item:hover .blog-item-title { color: var(--primary); }
.blog-item-desc { font-size: 0.95rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.seo-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.seo-modal.active { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-content {
    background: var(--white); width: 90%; max-width: 750px;
    border-radius: 8px; border-top: 5px solid var(--primary); position: relative;
    max-height: 0px; padding: 0 50px; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.seo-modal.active .modal-content {
    max-height: 90vh; padding: 50px; overflow-y: auto;
}
.modal-close {
    position: absolute; top: 20px; right: 20px; background: var(--light-grey); border: none;
    width: 45px; height: 45px; border-radius: 4px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.3s; color: var(--black);
}
.modal-close:hover { background: var(--primary); color: var(--white); }
.modal-title-main { font-size: 2.2rem; margin-bottom: 25px; color: var(--black); text-transform: uppercase; letter-spacing: -1px; line-height: 1.2;}
.modal-intro { margin-bottom: 20px; font-size: 1.05rem; color: var(--text-main); line-height: 1.8;}
.modal-list { margin-top: 25px; list-style: none; }
.modal-list li { margin-bottom: 15px; font-weight: 500; font-size: 1.05rem; display: flex; align-items: flex-start; gap: 12px; color: var(--text-main);}
.modal-list-icon { color: var(--primary); font-size: 1.4rem; margin-top: 2px;}
.modal-highlight { margin-top: 35px; background: var(--light-grey); padding: 25px; border-radius: 8px; border-left: 5px solid var(--primary); }
.modal-highlight-title { color: var(--black); margin-bottom: 5px; font-size:1.3rem; font-family:'Montserrat', sans-serif;}
.modal-highlight-desc { margin-bottom:0; font-weight:600; color:var(--text-muted); }
.modal-subheading { margin:20px 0 10px; color:var(--primary); font-size: 1.3rem; font-family: 'Montserrat', sans-serif;}
.seo-data-hidden { position: absolute; width: 0; height: 0; overflow: hidden; opacity: 0; pointer-events: none; }
.carlist-header-banner {
    background-color: var(--black);
    padding: 60px 0;
    text-align: center;
    border-bottom: 5px solid var(--primary);
    margin-bottom: 50px;
    background-image: linear-gradient(135deg, rgba(168,2,2,0.1) 0%, rgba(5,5,5,1) 100%);
}
.page-title {
    font-size: 2.8rem; font-weight: 900; text-transform: uppercase; 
    color: var(--white); margin-bottom: 10px; letter-spacing: -1px;
}
.page-subtitle { color: #a1a1aa; font-size: 1.15rem; }
.btn-mobile-filter {
    display: none; width: 100%; padding: 18px; margin-bottom: 30px;
    background-color: var(--black); color: var(--white); border: none; border-radius: 6px;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; text-transform: uppercase;
    cursor: pointer; transition: var(--transition);
}
.btn-mobile-filter .material-icons-round { margin-right: 10px; font-size: 1.3rem; }
.btn-mobile-filter:hover { background-color: var(--primary); }
.filter-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7); z-index: 1001;
    opacity: 0; visibility: hidden; pointer-events: none; transition: var(--transition);
}
.filter-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.filter-topbox {
    background: var(--white); border: 1px solid var(--border-light); 
    border-top: 5px solid var(--primary); padding: 35px; border-radius: 8px; 
    margin-bottom: 50px; box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.filter-sidebar-header { display: none; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); margin-bottom: 25px; }
.filter-sidebar-header h3 { font-size: 1.3rem; display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.filter-sidebar-header h3 .material-icons-round { color: var(--primary); }
.btn-close-filter { background: none; border: none; cursor: pointer; color: var(--black); }
.btn-close-filter .material-icons-round { font-size: 2rem; }
.btn-close-filter:hover { color: var(--primary); }
.filter-grid-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.filter-field { position: relative; }
.filter-icon {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: var(--primary); font-size: 1.3rem; pointer-events: none;
}
.filter-select, .filter-input {
    width: 100%; padding: 16px 16px 16px 50px;
    border: 1px solid #ddd; border-radius: 4px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-main);
    background-color: var(--light-grey); transition: var(--transition); outline: none;
}
.filter-select:focus, .filter-input:focus { border-color: var(--primary); background-color: var(--white); box-shadow: 0 0 0 3px rgba(168,2,2,0.1); }
.filter-more-wrap {
    max-height: 0; opacity: 0; overflow: hidden; pointer-events: none;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.filter-more-wrap.expanded { max-height: 500px; opacity: 1; pointer-events: auto; padding-top: 15px; }
.filter-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; border-top: 1px solid var(--border-light); padding-top: 25px;}
.btn-filter-toggle {
    background: none; border: none; color: var(--primary); font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 0.95rem; text-transform: uppercase; cursor: pointer;
    display: flex; align-items: center; gap: 5px; transition: var(--transition);
}
.btn-filter-toggle:hover { color: var(--black); }
.filter-buttons-row { display: flex; gap: 15px; }
.btn-filter-clear {
    background: var(--light-grey); border: 1px solid #ddd; color: var(--text-main);
    padding: 14px 28px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
    cursor: pointer; transition: var(--transition); font-size: 0.95rem;
}
.btn-filter-clear:hover { background: #e5e5e5; color: var(--black); border-color: var(--black);}
.btn-filter-apply {
    background: var(--primary); border: none; color: var(--white);
    padding: 14px 35px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
    cursor: pointer; transition: var(--transition); font-size: 0.95rem; box-shadow: 0 4px 15px rgba(168, 2, 2, 0.3);
}
.btn-filter-apply:hover { background: var(--black); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
.results-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px; flex-wrap: wrap; gap: 20px;
    background: var(--white); padding: 20px 30px; border-radius: 8px;
    border: 1px solid var(--border-light); box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.results-count { font-size: 1.4rem; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--black); text-transform: uppercase;}
.sort-select {
    padding: 14px 20px; border: 1px solid var(--border-light); border-radius: 4px;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--black);
    background: var(--light-grey); outline: none; cursor: pointer; transition: var(--transition); text-transform: uppercase;
}
.sort-select:focus { border-color: var(--primary); background: var(--white); }
.listing-car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.listing-car-grid article {
    min-width: 0 !important;
    width: 100%;
    margin: 0;
    flex: unset;
}
.pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 70px; margin-bottom: 40px; }
.page-link {
    width: 50px; height: 50px; display: flex; justify-content: center; align-items: center;
    background: var(--white); border: 1px solid #ccc; border-radius: 4px;
    font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--black); transition: var(--transition); font-size: 1.1rem;
}
.page-link:hover:not(.disabled) { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-link.active { background: var(--black); color: var(--white); border-color: var(--black); }
.page-link.disabled { opacity: 0.5; cursor: not-allowed; background: var(--light-grey); }
.prev-next .material-icons-round { font-size: 1.8rem; }
.page-single-car { background-color: #fcfcfc; }
.vehicle-breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 30px 0; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.vehicle-breadcrumbs a { color: var(--black); font-weight: 700; transition: var(--transition); }
.vehicle-breadcrumbs a:hover { color: var(--primary); }
.vehicle-breadcrumbs .separator { font-size: 1.1rem; color: #ccc; }
.vehicle-breadcrumbs .current-page { color: var(--primary); font-weight: 700; }
.vehicle-layout { display: flex; gap: 50px; align-items: flex-start; margin-bottom: 80px; }
.vehicle-gallery-area { flex: 1; min-width: 0; }
.vehicle-main-image { position: relative; width: 100%; height: 550px; border-radius: 12px; overflow: hidden; background: #e5e5e5; margin-bottom: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.vehicle-main-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-gallery-counter { position: absolute; bottom: 20px; right: 20px; background: rgba(5,5,5,0.8); color: var(--white); padding: 8px 20px; border-radius: 30px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem; backdrop-filter: blur(5px); letter-spacing: 1px; }
.vehicle-thumbnail-track { display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 15px; margin-bottom: 50px; }
.vehicle-thumbnail-track::-webkit-scrollbar { display: none; }
.thumb-item { min-width: 150px; height: 100px; border-radius: 8px; overflow: hidden; cursor: pointer; scroll-snap-align: start; flex-shrink: 0; transition: var(--transition); background: var(--black); padding: 0; border: none; position: relative; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: var(--transition); }
.thumb-item:hover img { opacity: 0.8; }
.thumb-item.active { box-shadow: 0 0 0 4px var(--primary); }
.thumb-item.active img { opacity: 1; }
.vehicle-sidebar { width: 420px; flex-shrink: 0; }
.vehicle-sidebar-inner { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: 0 25px 50px rgba(0,0,0,0.06); position: sticky; top: 120px; border-top: 6px solid var(--primary); }
.vehicle-title { font-size: 1.5rem; font-weight: 400; font-family: 'Montserrat', sans-serif; line-height: 1.3; margin-bottom: 20px; color: var(--black); text-transform: uppercase; letter-spacing: -0.3px; }
.vehicle-price-box { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 15px; border-bottom: 2px solid var(--light-grey); padding-bottom: 20px; margin-bottom: 25px; }
.vehicle-price { font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -1px; }
.vehicle-specs-list { display: flex; flex-direction: column; margin-bottom: 35px; }
.vehicle-specs-list > div:last-child { border-bottom: none; }
.vehicle-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; }
.v-spec-label { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.v-spec-label .material-icons-round { font-size: 1.2rem; color: var(--primary); }
.v-spec-val { font-weight: 800; color: var(--black); text-align: right; font-size: 0.95rem; }
.vehicle-spec-row-group { display: flex; justify-content: space-between; gap: 30px; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.vehicle-spec-col { flex: 1; display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; }
.vehicle-spec-col .v-spec-label { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.vehicle-spec-col .v-spec-label .material-icons-round { font-size: 1.2rem; color: var(--primary); }
.vehicle-spec-col .v-spec-val { font-size: 0.95rem; font-weight: 800; color: var(--black); text-align: right; }
.vehicle-actions { display: flex; flex-direction: column; gap: 15px; }
.v-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; font-size: 0.95rem; transition: var(--transition); border: none; cursor: pointer; letter-spacing: 1px; }
.v-btn-call { background: var(--black); color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.v-btn-call:hover { background: var(--primary); box-shadow: 0 10px 20px rgba(168,2,2,0.2); }
.v-btn-whatsapp { background: #14833b; color: var(--white); box-shadow: 0 10px 20px rgba(37,211,102,0.2); }
.v-btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.v-btn-message { background: transparent; border: 2px solid var(--border-light); color: var(--black); }
.v-btn-message:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.vehicle-content-blocks { display: flex; flex-direction: column; gap: 60px; }
.vehicle-block-title { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 30px; color: var(--black); position: relative; padding-bottom: 15px; letter-spacing: -0.5px; }
.vehicle-block-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: var(--primary); }
.vehicle-text-content p { margin-bottom: 20px; color: var(--text-main); font-size: 1.05rem; line-height: 1.8; }
.vehicle-text-content a { color: var(--primary); font-weight: 700; border-bottom: 1px solid transparent; transition: var(--transition); }
.vehicle-text-content a:hover { border-bottom-color: var(--primary); }
.text-content-inner { position: relative; max-height: 140px; overflow: hidden; transition: max-height 0.6s ease; }
.text-content-inner::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 70px; background: linear-gradient(to bottom, rgba(252,252,252,0), #fcfcfc); pointer-events: none; transition: opacity 0.5s ease; }
.text-content-inner.expanded { max-height: 1500px; }
.text-content-inner.expanded::after { opacity: 0; }
.btn-load-more-desc { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 10px 24px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); margin-top: 15px; display: inline-block; font-size: 0.85rem; }
.btn-load-more-desc:hover { background: var(--primary); color: var(--white); }
.vehicle-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 15px; }
.vehicle-features-grid li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--black); font-size: 0.95rem; background: var(--white); padding: 16px 20px; border-radius: 8px; border: 1px solid var(--border-light); box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: var(--transition); }
.vehicle-features-grid li:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.vehicle-features-grid li .material-icons-round { color: var(--primary); font-size: 1.4rem; }
.vehicle-related-section { margin-bottom: 100px; }
.vehicle-related-empty { background: var(--white); border: 2px dashed var(--border-light); padding: 60px; text-align: center; border-radius: 12px; color: var(--text-muted); font-weight: 600; font-size: 1.1rem; }
/* Merk Page */
.ubrand-stage { position: relative; background: var(--white); border-radius: 24px; padding: 35px 40px; margin: 40px 0; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 15px 35px rgba(0,0,0,0.03); overflow: hidden; }
.ubrand-stage__top-line { position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, #a80202 0%, #ff4d4d 100%); }
.ubrand-stage__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; position: relative; z-index: 2; }
.ubrand-stage__left { display: flex; align-items: center; gap: 25px; }
.ubrand-stage__outer-wrapper { background: rgba(168, 2, 2, 0.05); padding: 6px; border-radius: 20px; border: 1px solid rgba(168, 2, 2, 0.15); display: flex; align-items: center; justify-content: center; }
.ubrand-stage__logo-wrapper { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.04); padding: 12px; }
.ubrand-stage__logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.ubrand-stage__brand-wrapper { display: flex; align-items: center; gap: 12px; }
.ubrand-stage__title { font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 900; letter-spacing: -1.5px; color: #800000; margin: 0; line-height: 1; }
.ubrand-stage__info-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(168, 2, 2, 0.06); color: #a80202; cursor: pointer; transition: var(--transition); border: 1px solid rgba(168, 2, 2, 0.1); }
.ubrand-stage__info-btn:hover { background: #a80202; color: var(--white); transform: scale(1.08); }
.ubrand-stage__info-btn .material-icons-round { font-size: 1rem; font-weight: 900; }
.ubrand-stage__stats { display: flex; gap: 35px; }
.ubrand-stage__stat { display: flex; align-items: center; gap: 15px; background: transparent; }
.ubrand-stage__stat-icon-box { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: #a80202; color: var(--white); box-shadow: 0 10px 20px rgba(168, 2, 2, 0.25); transition: var(--transition); }
.ubrand-stage__stat-icon-box .material-icons-round { font-size: 1.8rem; }
.ubrand-stage__stat-info { display: flex; flex-direction: column; gap: 2px; }
.ubrand-stage__stat-value { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800; color: #0f172a; line-height: 1; }
.ubrand-stage__stat-label { font-size: 0.88rem; color: #64748b; font-weight: 500; }
.ubrand-stage__decor-shape { position: absolute; right: -20px; bottom: -40px; width: 140px; height: 180px; border: 4px solid rgba(168, 2, 2, 0.08); border-radius: 24px; transform: rotate(15deg); pointer-events: none; z-index: 1; }

.ubrand-stage__seo-desc { max-height: 0; opacity: 0; visibility: hidden; overflow: hidden; position: absolute; z-index: -1; }

.ubrand-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.7); z-index: 9998; max-height: 0; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.ubrand-overlay.active { max-height: 100vh; opacity: 1; visibility: visible; }
.ubrand-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); width: 90%; max-width: 750px; background: var(--white); border-radius: 12px; border-top: 6px solid var(--primary); z-index: 9999; max-height: 0; opacity: 0; visibility: hidden; overflow: hidden; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.ubrand-popup.active { max-height: 85vh; opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.ubrand-popup__header { display: flex; justify-content: space-between; align-items: center; padding: 25px 35px; border-bottom: 1px solid var(--border-light); }
.ubrand-popup__title { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--black); text-transform: uppercase; }
.ubrand-popup__close { background: var(--light-grey); border-radius: 4px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--black); transition: var(--transition); }
.ubrand-popup__close:hover { background: var(--primary); color: var(--white); }
.ubrand-popup__content { padding: 35px; overflow-y: auto; max-height: calc(85vh - 90px); }
.ubrand-popup__content p { color: #334155; font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.ubrand-popup__content h2 { font-size: 1.5rem; font-weight: 800; margin: 30px 0 15px; color: #1e293b; }
.ubrand-popup__content h3 { font-size: 1.2rem; font-weight: 700; margin: 25px 0 12px; color: #1e293b; }

.vhc-cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 35px; margin-bottom: 90px; }
.vhc-car-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 10px 25px rgba(0,0,0,0.02); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease; display: flex; flex-direction: column; transform-style: preserve-3d; will-change: transform, box-shadow; }
.vhc-car-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); border-color: rgba(168, 2, 2, 0.2); }
.vhc-car-card__img-block { position: relative; height: 260px; background: #f1f5f9; overflow: hidden; }
.vhc-car-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.vhc-car-card:hover .vhc-car-card__img { transform: scale(1.05); }
.vhc-car-card__brand { position: absolute; top: 20px; left: 20px; background: rgba(15, 23, 42, 0.85); color: var(--white); padding: 6px 16px; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 1.5px; z-index: 2; backdrop-filter: blur(8px); text-transform: uppercase; border: 1px solid rgba(255,255,255,0.1); }
.vhc-car-card__price { position: absolute; bottom: 20px; right: 20px; background: #a80202; color: var(--white); padding: 10px 20px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem; z-index: 2; box-shadow: 0 8px 20px rgba(168,2,2,0.35); border: 1px solid rgba(255,255,255,0.1); }
.vhc-car-card__bottom { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; background: var(--white); }
.vhc-car-card__model-row { margin-bottom: 12px; }
.vhc-car-card__model { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 800; line-height: 1.4; color: #1e293b; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 2.8em; letter-spacing: -0.3px; transition: color 0.3s ease; }
.vhc-car-card:hover .vhc-car-card__model { color: #a80202; }
.vhc-car-card__type-year-row { display: flex; align-items: center; gap: 8px; margin-bottom: 25px; font-size: 0.85rem; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.vhc-car-card__dot { width: 5px; height: 5px; background: #cbd5e1; border-radius: 50%; }
.vhc-car-card__features-row { display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid #f1f5f9; padding-top: 20px; margin-top: auto; }
.vhc-car-card__feature { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #475569; font-weight: 600; }
.vhc-car-card__feature .material-icons-round { font-size: 1.2rem; color: #64748b; transition: color 0.3s ease; }
.vhc-car-card:hover .vhc-car-card__feature .material-icons-round { color: #a80202; }
.vhc-car-card--sold .vhc-car-card__price { background: #64748b; box-shadow: none; }
.vhc-car-card__sold-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.65); display: flex; justify-content: center; align-items: center; z-index: 3; backdrop-filter: blur(3px); transition: background-color 0.3s ease; }
.vhc-car-card__sold-text { background: #0f172a; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem; letter-spacing: 3px; padding: 14px 35px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }

    .vehicle-main-image { position: relative; cursor: pointer; overflow: hidden; }
    .gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; z-index: 10; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
    .gallery-nav:hover { background: rgba(0,0,0,0.8); }
    .gallery-nav.prev { left: 10px; }
    .gallery-nav.next { right: 10px; }
    .vehicle-thumbnail-track { display: flex; overflow-x: auto; scroll-behavior: smooth; gap: 10px; padding: 10px 0; }
    .vehicle-thumbnail-track::-webkit-scrollbar { height: 6px; }
    .vehicle-thumbnail-track::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
    .thumb-item { flex-shrink: 0; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
    .thumb-item.active { border-color: var(--primary, #007bff); }
    #custom-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 99999; align-items: center; justify-content: center; flex-direction: column; }
    #custom-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
    .lightbox-close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: white; font-size: 36px; cursor: pointer; padding: 10px; }
    .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
    .lightbox-nav:hover { background: rgba(255,255,255,0.3); }
    .lightbox-nav.prev { left: 20px; }
    .lightbox-nav.next { right: 20px; }
    .lightbox-counter { color: white; margin-top: 15px; font-size: 16px; font-weight: 500; letter-spacing: 1px; }