/* ==========================================
   CHERY STYLE CSS FOR BYD LANDING PAGE
   ========================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
    --primary: #B82729;          /* Tall Poppy Red (Chery Brand Color) */
    --primary-hover: #9c2022;
    --accent: #A4896C;           /* Gold/Beige (Chery Accent Color) */
    --accent-hover: #8f775d;
    --bg-dark: #0F1012;          /* Deep Slate Black */
    --bg-card: #16171A;          /* Charcoal card background */
    --bg-light: #F9FAFB;         /* Light section bg */
    --text-white: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --border-color: #374151;
    --border-light: #E5E7EB;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-text {
    padding: 0;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-text:hover {
    color: var(--text-white);
}

.btn-text i {
    transition: transform 0.2s ease;
}

.btn-text:hover i {
    transform: translateX(4px);
}

/* --- TOPBAR --- */
.topbar {
    background-color: #08090A;
    font-size: 0.75rem;
    padding: 8px 0;
    border-bottom: 1px solid #1f2937;
    color: var(--text-muted);
}

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

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item i {
    color: var(--primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-open {
    background-color: #10B981;
    color: var(--text-white);
    padding: 2px 6px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
}

/* --- NAVBAR --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(15, 16, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(8, 9, 10, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
    filter: brightness(1) invert(0);
}

.menu-toggle {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item > a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 24px 0;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
}

.nav-item:hover > a,
.nav-item.active > a {
    color: var(--text-white);
    border-bottom-color: var(--primary);
}

/* --- MEGA MENU --- */
.nav-item.has-children {
    position: relative;
}

.nav-item.has-children > a i {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.nav-item.has-children:hover > a i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 680px;
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    z-index: 10;
}

.nav-item.has-children:hover .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mega-column h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.mega-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px;
    border-radius: var(--border-radius-sm);
}

.mega-list li a:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.mega-list img {
    width: 50px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #24252a;
}

.mega-list .name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.mega-list .desc {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.nav-agent {
    display: flex;
    align-items: center;
}

.agent-mini-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.agent-mini-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- TICKER --- */
.ticker-container {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* --- HERO CAROUSEL --- */
.hero-carousel {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 580px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.carousel-container {
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 650px;
    z-index: 3;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--text-white);
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 4rem;
    }
}

.slide-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .slide-desc {
        font-size: 1.1rem;
    }
}

.slide-price {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 32px;
}

.slide-price strong {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(15, 16, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: var(--transition);
}

.carousel-control:hover {
    background-color: rgba(184, 39, 41, 0.85); /* Tall Poppy on Hover */
    border-color: transparent;
}

.carousel-control.prev {
    left: 24px;
}

.carousel-control.next {
    right: 24px;
}

.carousel-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 32px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.indicator.active {
    background-color: var(--primary);
    width: 48px;
}

/* --- LINEUP SECTION --- */
.lineup-section {
    padding: 80px 0;
    background-color: #0F1012;
}

.lineup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.lineup-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.lineup-header p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.lineup-tabs {
    display: inline-flex;
    background-color: #16171A;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lineup-tab {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.lineup-tab.active {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(184, 39, 41, 0.3);
}

.lineup-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 30px;
}

.lineup-grid.active {
    display: grid;
}

@media (min-width: 576px) {
    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .lineup-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Lineup Cards styled like Chery model grid */
.lineup-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.lineup-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 39, 41, 0.3);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    background-color: #08090A;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lineup-card:hover .card-image img {
    transform: scale(1.05);
}

.card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-specs span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-specs span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 50%;
}

.card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.card-action {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--text-muted);
}

.lineup-card:hover .card-action {
    color: var(--text-white);
}

.card-action i {
    transition: transform 0.2s ease;
}

.lineup-card:hover .card-action i {
    transform: translateX(4px);
}

/* --- BYD SPECIALTY --- */
.specialty-section {
    padding: 80px 0;
    background-color: #08090A;
}

.specialty-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .specialty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.specialty-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 39, 41, 0.3);
}

.specialty-icon-container {
    font-size: 2.25rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.specialty-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.specialty-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.specialty-actions {
    display: flex;
    gap: 16px;
}

/* --- SPECIFICATION PORTAL (DETAILS) --- */
.model-portal-section {
    padding: 80px 0;
    background-color: #0F1012;
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.model-title-area h1 {
    font-size: 2.25rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.model-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
}

.badge-promo {
    background-color: var(--primary);
    border-color: transparent;
    color: var(--text-white);
}

.model-price-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(184, 39, 41, 0.08);
    border: 1px solid rgba(184, 39, 41, 0.2);
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
}

.model-price-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.price-lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
}

/* Color Selector */
.color-selector-section {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.color-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.color-name-text {
    font-weight: 700;
    color: var(--text-white);
}

.color-display {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 24px;
    position: relative;
    padding-top: 50%; /* 2:1 Aspect Ratio */
}

.color-car-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.color-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-dot.active {
    border-color: var(--text-white);
    transform: scale(1.15);
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 48px;
}

.gallery-main {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 16px;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #08090A;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.gallery-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.gallery-thumbnails-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.gallery-thumbnails {
    display: flex;
    gap: 8px;
    padding-bottom: 8px;
}

.gallery-thumb {
    width: 75px;
    height: 50px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-thumb:hover {
    opacity: 0.85;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Table Widget */
.widget-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .widget-row {
        grid-template-columns: 1.2fr 1fr;
    }
}

.widget-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 32px;
}

.widget-card.img-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08090A;
}

.widget-img img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
}

.widget-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.widget-pricing-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-pricing-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
}

.widget-pricing-table .variant-name {
    font-weight: 600;
    color: var(--text-white);
}

.widget-pricing-table .variant-price {
    color: var(--accent);
    font-weight: 700;
    text-align: right;
}

.widget-pricing-table .variant-action {
    text-align: right;
    width: 40px;
}

.widget-pricing-table .variant-action a {
    color: #10B981;
    font-size: 1.15rem;
}

.widget-pricing-table .variant-action a:hover {
    color: var(--text-white);
}

.widget-btn-group {
    display: flex;
    justify-content: center;
}

.widget-btn-group .btn-success {
    background-color: #10B981;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.widget-btn-group .btn-success:hover {
    background-color: #059669;
}

/* Layout structure: Content vs Sidebar */
.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .content-layout {
        grid-template-columns: 2.2fr 1fr;
    }
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    background-color: #000;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.description-text {
    margin-bottom: 40px;
}

.description-text h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.description-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.description-text p strong {
    color: var(--text-white);
}

.description-text p em {
    color: var(--accent);
    font-style: normal;
}

/* Dynamic Brochure section */
.brochures {
    margin-top: 48px;
}

.brochure-img {
    width: 100%;
    margin-bottom: 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Booking Form */
.form-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 32px;
    margin-bottom: 40px;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.form-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.step-indicator {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.step-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    background-color: var(--border-color);
    width: 100%;
    z-index: 1;
}

.step-dot {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.step-dot.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--text-white);
}

.step-dot.completed {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--text-white);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
}

select.form-control option {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-option {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.radio-option input {
    accent-color: var(--primary);
}

.radio-option.selected {
    border-color: var(--primary);
    background-color: rgba(184, 39, 41, 0.03);
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.form-navigation .btn {
    border-radius: var(--border-radius-sm);
}

/* Sidebar Consultant Card */
.sidebar {
    position: relative;
}

.agent-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px 24px;
    text-align: center;
    position: sticky;
    top: 96px; /* Offset for header height + gap */
}

.agent-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.agent-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.agent-role {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.agent-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.agent-contacts {
    display: flex;
}

.agent-link.wa {
    background-color: #10B981;
    color: var(--text-white);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-link.wa:hover {
    background-color: #059669;
}

/* --- OTHER MODELS SLIDER (Slider) --- */
.other-models {
    padding: 80px 0;
    background-color: #08090A;
}

.models-slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.models-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 16px 0;
}

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

.model-card {
    min-width: 260px;
    width: 260px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 39, 41, 0.2);
}

.model-card-img {
    height: 150px;
    background-color: #020202;
    overflow: hidden;
}

.model-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-card-body {
    padding: 16px;
}

.model-card-tag {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-white);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.model-card-tag.best {
    background-color: var(--primary);
}

.model-card-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.model-card-details {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.model-card-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.slider-nav {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(15, 16, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.slider-nav:hover {
    background-color: var(--primary);
    border-color: transparent;
}

.slider-nav-prev {
    left: -20px;
}

.slider-nav-next {
    right: -20px;
}

/* --- FOOTER (Chery-Style Grid) --- */
.footer {
    background-color: #0F1012;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 32px;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

.brand-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-item i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-policy {
    display: flex;
    gap: 20px;
}

/* --- SLIDING DRAWER --- */
.pricelist-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: #121316;
    z-index: 150;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricelist-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.close-drawer-btn {
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-drawer-btn:hover {
    color: var(--text-white);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.pricelist-table {
    width: 100%;
    border-collapse: collapse;
}

.pricelist-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricelist-table td {
    padding: 12px 6px;
    font-size: 0.85rem;
}

.pricelist-table .brand-row {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricelist-table .brand-row td {
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding-top: 16px;
}

.pricelist-table .car-type {
    color: var(--text-white);
    font-weight: 500;
}

.pricelist-table .car-price {
    text-align: right;
    font-weight: 700;
    color: var(--text-white);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* --- FLOATING ACTIONS --- */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.price-tag {
    background-color: var(--accent);
}

.float-btn.wa {
    background-color: #10B981;
}

.float-tooltip {
    position: absolute;
    right: 62px;
    background-color: #000;
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: var(--shadow);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
}

/* --- MEDIA QUERIES FOR RESPONSIVENESS --- */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: #0F1012;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .nav-links.open {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-item > a {
        display: block;
        padding: 16px 0;
        width: 100%;
        border-bottom: none;
    }
    
    .nav-item:hover > a,
    .nav-item.active > a {
        color: var(--primary);
    }
    
    .nav-item.has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background-color: transparent;
        padding: 0 0 16px 16px;
        display: none;
    }
    
    .nav-item.has-children.open .mega-menu {
        display: block;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mega-column h4 {
        margin-bottom: 10px;
    }
    
    .nav-agent {
        margin-top: 24px;
    }
}

/* --- MULTI-ACTION WIDGET BUTTONS --- */
.widget-actions-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.btn-widget {
    flex: 1;
    min-width: 140px;
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    gap: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-test-drive {
    background-color: var(--accent);
    color: var(--text-white);
}

.btn-test-drive:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

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

.btn-pre-book:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-wa {
    background-color: #10B981;
    color: var(--text-white);
}

.btn-wa:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

/* --- CHERY-STYLE FLOATING SIDE WIDGET --- */
.floating-side-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #16171A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-right: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
}

.side-widget-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 80px;
}

.side-widget-item:last-child {
    border-bottom: none;
}

.side-widget-item i {
    font-size: 1.25rem;
    margin-bottom: 6px;
    transition: var(--transition);
}

.side-widget-item span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.side-widget-item:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.side-widget-item:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

.side-widget-item.wa:hover i {
    color: #10B981;
}

/* --- PROMOTIONAL MODAL POPUP --- */
.promo-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 24px;
}

.promo-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.promo-modal-content {
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.promo-modal.open .promo-modal-content {
    transform: scale(1);
}

.promo-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
    z-index: 10;
}

.promo-close-btn:hover {
    color: var(--text-white);
}

.promo-body {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .promo-body {
        grid-template-columns: 1.1fr 1fr;
    }
}

.promo-image {
    background-color: #08090A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.promo-image img {
    max-height: 320px;
    object-fit: contain;
}

.promo-text-area {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-tag {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-text-area h2 {
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-text-area p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-price-tag {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.promo-price-tag strong {
    color: var(--accent);
    font-size: 1.25rem;
}

.promo-actions .btn {
    width: 100%;
}

/* ==========================================
   LIGHT MODE SPECIFIC OVERRIDES (Chery Style)
   ========================================== */
body {
    background-color: #FFFFFF;
    color: #1F2937;
}

h1, h2, h3, h4, h5, h6 {
    color: #111827;
}

/* Hero slides must remain dark background with white text */
.hero-carousel {
    background-color: #000;
    color: #FFFFFF;
}

.hero-carousel h1, 
.hero-carousel h2, 
.hero-carousel h3, 
.hero-carousel h4, 
.hero-carousel p, 
.hero-carousel span, 
.hero-carousel strong {
    color: #FFFFFF;
}

.hero-carousel .slide-tag {
    color: var(--accent);
}

.hero-carousel .btn-outline {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hero-carousel .btn-outline:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Ticker must remain white text on red background */
.ticker-container {
    color: #FFFFFF;
}

/* Topbar styling */
.topbar {
    background-color: #F3F4F6;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.topbar a {
    color: #4B5563;
}

.topbar a:hover {
    color: var(--primary);
}

/* Navbar styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-item > a {
    color: #4B5563;
}

.nav-item:hover > a,
.nav-item.active > a {
    color: var(--primary);
}

.logo img {
    filter: none; /* Keep original colored logo */
}

.menu-toggle {
    color: #1F2937;
}

/* Mega Menu styling */
.mega-menu {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mega-column h4 {
    color: #1F2937;
    border-bottom-color: #E5E7EB;
}

.mega-list li a:hover {
    background-color: #F9FAFB;
}

.mega-list .name {
    color: #1F2937;
}

.mega-list .desc {
    color: #6B7280;
}

/* Tab containers */
.lineup-tabs {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
}

.lineup-tab {
    color: #6B7280;
}

.lineup-tab.active {
    color: #FFFFFF;
}

/* Lineup cards */
.lineup-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.lineup-card:hover {
    border-color: rgba(184, 39, 41, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-specs {
    border-bottom-color: #E5E7EB;
}

.card-specs span {
    color: #6B7280;
}

.card-action {
    color: #6B7280;
}

.lineup-card:hover .card-action {
    color: var(--primary);
}

/* Specialty section & cards */
.specialty-section {
    background-color: #F9FAFB;
}

.specialty-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.specialty-card h3 {
    color: #111827;
}

.specialty-card p {
    color: #6B7280;
}

/* Model detail headers and price */
.model-price-badge {
    background-color: rgba(184, 39, 41, 0.05);
    border: 1px solid rgba(184, 39, 41, 0.15);
}

.price-lbl {
    color: #6B7280;
}

.price-val {
    color: #111827;
}

.color-info {
    color: #4B5563;
}

.color-name-text {
    color: #111827;
}

.color-dot.active {
    border-color: #111827;
}

/* Gallery */
.gallery-main {
    background-color: #F3F4F6;
}

/* Pricing widget */
.widget-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.widget-card.img-card {
    background-color: #F9FAFB;
}

.widget-pricing-table tr {
    border-bottom-color: #E5E7EB;
}

.widget-pricing-table .variant-name {
    color: #1F2937;
}

.description-text p {
    color: #4B5563;
}

.description-text p strong {
    color: #111827;
}

/* Form card elements */
.form-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.form-subtitle {
    color: #6B7280;
}

.step-dot {
    background-color: #FFFFFF;
    border-color: #D1D5DB;
    color: #6B7280;
}

.step-progress-bar {
    background-color: #E5E7EB;
}

.form-group label {
    color: #4B5563;
}

.form-control {
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    color: #1F2937;
}

.form-control:focus {
    border-color: var(--primary);
}

select.form-control option {
    background-color: #FFFFFF;
    color: #1F2937;
}

.radio-option {
    border: 1px solid #D1D5DB;
    background-color: #FFFFFF;
    color: #1F2937;
}

.radio-option.selected {
    border-color: var(--primary);
    background-color: rgba(184, 39, 41, 0.05);
}

/* Sidebar Agent card */
.agent-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.agent-name {
    color: #1F2937;
}

.agent-desc {
    color: #6B7280;
}

/* Slider models cards */
.other-models {
    background-color: #F3F4F6;
}

.model-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.model-card-title {
    color: #111827;
}

.model-card-details {
    color: #6B7280;
}

/* Footer overrides (Chery footer is white/light gray background) */
.footer {
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    color: #4B5563;
}

.footer-col h4 {
    color: #111827;
}

.footer-links a {
    color: #4B5563;
}

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

.brand-col p {
    color: #6B7280;
}

.info-item {
    color: #6B7280;
}

.info-item a {
    color: #6B7280;
}

.info-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #E5E7EB;
    color: #6B7280;
}

.footer-policy a {
    color: #6B7280;
}

.footer-policy a:hover {
    color: var(--primary);
}

/* Sliding Pricelist Drawer */
.pricelist-drawer {
    background-color: #FFFFFF;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.drawer-header {
    border-bottom: 1px solid #E5E7EB;
}

.pricelist-table tr {
    border-bottom: 1px solid #E5E7EB;
}

.pricelist-table .brand-row {
    background-color: #F3F4F6;
    border-bottom: 1px solid #E5E7EB;
}

.pricelist-table .car-type {
    color: #1F2937;
}

.pricelist-table .car-price {
    color: #1F2937;
}

/* Floating Widget */
.floating-side-widget {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-right: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.side-widget-item {
    color: #6B7280;
    border-bottom: 1px solid #E5E7EB;
}

.side-widget-item:hover {
    background-color: #F9FAFB;
    color: #111827;
}

/* Promo Modal */
.promo-modal-content {
    background-color: #FFFFFF;
    border-color: #E5E7EB;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.promo-text-area h2 {
    color: #111827;
}

.promo-text-area p {
    color: #6B7280;
}

.promo-price-tag {
    color: #6B7280;
}

.promo-image {
    background-color: #F3F4F6;
}

.promo-close-btn {
    color: #6B7280;
}

.promo-close-btn:hover {
    color: #111827;
}

/* Mobile Nav link colors overrides in Light mode */
@media (max-width: 992px) {
    .nav-links {
        background-color: #FFFFFF;
        border-right: 1px solid #E5E7EB;
        border-left: 1px solid #E5E7EB;
    }
    
    .nav-item {
        border-bottom: 1px solid #E5E7EB;
    }
    
    .mega-menu {
        background-color: #F9FAFB;
    }
    
    .mega-list .name {
        color: #1F2937;
    }
}

/* Additional Light Mode Overrides for Sections & Images */
.lineup-section {
    background-color: #FFFFFF;
}

.model-portal-section {
    background-color: #FFFFFF;
}

.card-image {
    background-color: #F9FAFB;
}

.model-card-img {
    background-color: #F9FAFB;
}

.badge {
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #4B5563;
}

.badge-promo {
    background-color: var(--primary);
    border-color: transparent;
    color: #FFFFFF;
}

