/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3169;
    --primary-dark: #1f2349;
    --primary-light: #3d4487;
    --accent-color: #5592a2;
    --accent-light: #6ba8b8;
    --accent-dark: #3f6d79;
    --text-dark: #1a1a1a;
    --text-medium: #666666;
    --text-light: #999999;
    --text-on-primary: #ffffff;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Legal pages */
.legal-page {
    padding: 48px 0 72px;
    background: var(--bg-light);
}

.legal-hero {
    padding: 24px 0 18px;
}

.legal-title {
    font-size: 2rem;
    margin-bottom: 6px;
}

.legal-subtitle {
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 12px;
}

.legal-back {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
}

.legal-back:hover {
    text-decoration: underline;
}

.legal-content {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.legal-content h2 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.legal-content p {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 8px 0 12px 20px;
    color: var(--text-medium);
}

.legal-note {
    margin-top: 18px;
    color: var(--text-light);
    font-weight: 600;
}

.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-white);
    z-index: 2000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-loader-text {
    color: var(--text-medium);
    font-weight: 600;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

h1 {
    font-weight: 900;
    letter-spacing: -1px;
}

h2 {
    font-weight: 800;
}

h3 {
    font-weight: 700;
}

p {
    font-weight: 500;
    color: var(--text-medium);
}

/* Header & Navigation */
.header {
    background: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    background: transparent;
    color: var(--text-on-primary);
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    /* filter: brightness(0) invert(1); */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-on-primary);
    font-weight: 700;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* SVG Icons */
svg {
    flex-shrink: 0;
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(44, 49, 105, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 49, 105, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 49, 105, 0) 0%, rgba(31, 35, 73, 0) 100%),
                url('/assets/images/bg.jpg') center/cover no-repeat;
    color: var(--text-on-primary);
    padding: 1rem 6rem 0 6rem !important;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.7;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-card {
    border-radius: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.hero-card-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 1.5rem;
    stroke-width: 1.5;
}

.hero-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: #ffffff;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 500;
}

/* Features Section */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    stroke-width: 3;
    flex-shrink: 0;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.advantage-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    stroke-width: 2;
}

.advantage-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.advantage-card p {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.plan-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.period {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 800;
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-medium);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    flex-shrink: 0;
    stroke-width: 2;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.125rem;
}

.contact-item p {
    color: var(--text-medium);
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    /* filter: brightness(0) invert(1); */
}

.footer-col h3 {
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--primary-color);
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.75rem 0.75rem;
        border-radius: 12px;
    }

    .nav-menu a.btn-primary {
        display: flex;
        width: 100%;
    }

    .hero {
        padding: 2.5rem 1.5rem 0 1.5rem !important;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 2rem 1rem 0 1rem !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-card-image {
        max-height: 360px;
        object-fit: contain;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card,
    .feature-card {
        padding: 2rem;
    }
}
/* Stats Section */
.stats-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-on-primary);
}

.stats-section .section-title {
    color: var(--text-on-primary);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--text-on-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-on-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.top-brand-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Top 5 Brand/Model Chart (Stats Section) */
.top-chart {
    max-width: 1200px;
    margin: 2.25rem auto 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 1.75rem 1.75rem;
}

.top-chart-title {
    color: var(--text-on-primary);
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.top-chart-bars {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.top-chart-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 3fr) auto;
    align-items: center;
    gap: 14px;
}

.top-chart-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--text-on-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-chart-logo {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.top-chart-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.top-chart-logo.is-letter {
    font-weight: 900;
    color: var(--text-on-primary);
}

.top-chart-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-chart-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.top-chart-bar {
    height: 100%;
    width: 0;
    background: var(--accent-color);
    border-radius: 999px;
}

.top-chart-value {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
}

.top-chart-empty {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-align: center;
    padding: 0.25rem 0;
}

.top-brand-list {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--text-on-primary);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
}

.top-brand-list-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.top-brand-list-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-brand-list-count {
    font-weight: 900;
    opacity: 0.9;
    flex: 0 0 auto;
}

.top-brand-badge {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-on-primary);
    flex: 0 0 auto;
}

.top-brand-badge img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Latest Vehicles Section */
.latest-vehicles {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.vehicle-loader {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.vehicle-loader p {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 600;
}

.vehicle-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-light);
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.vehicle-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.vehicle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.vehicle-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vehicle-detail {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.vehicle-detail svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-medium);
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.vehicle-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.vehicle-location svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-light);
}

.vehicle-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.vehicles-cta {
    text-align: center;
    margin-top: 3rem;
}

.vehicle-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
}

.vehicle-error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.vehicle-error-message {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}