/* =============================================
   ReposVehicles - Dark Gray Modern Theme
   ============================================= */

:root {
    --rv-bg-primary: #0f0f1a;
    --rv-bg-secondary: #1a1a2e;
    --rv-bg-card: #16213e;
    --rv-bg-card-hover: #1c2a4a;
    --rv-accent: #e94560;
    --rv-accent-hover: #ff6b81;
    --rv-text-primary: #e8e8e8;
    --rv-text-secondary: #a0a0b8;
    --rv-border: #2a2a4a;
    --rv-success: #2ed573;
    --rv-warning: #ffa502;
    --rv-info: #1e90ff;
    --rv-nav-bg: #12122a;
    --rv-footer-bg: #0a0a18;
    --rv-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --rv-shadow-hover: 0 8px 40px rgba(233, 69, 96, 0.15);
    --rv-radius: 12px;
    --rv-radius-sm: 8px;
    --rv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--rv-bg-primary);
    color: var(--rv-text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--rv-bg-primary); }
::-webkit-scrollbar-thumb { background: var(--rv-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rv-accent); }

/* Top Bar */
.top-bar {
    background: var(--rv-footer-bg);
    border-bottom: 1px solid var(--rv-border);
    color: var(--rv-text-secondary);
    font-size: 0.82rem;
}

/* Navigation */
.main-nav {
    background: var(--rv-nav-bg) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rv-border);
    padding: 0.75rem 0;
    z-index: 1050;
}
.main-nav .navbar-brand {
    font-size: 1.4rem;
    color: var(--rv-text-primary) !important;
    letter-spacing: -0.5px;
}
.main-nav .nav-link {
    color: var(--rv-text-secondary) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--rv-radius-sm);
    transition: var(--rv-transition);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--rv-text-primary) !important;
    background: rgba(233, 69, 96, 0.1);
}

/* Accent color helpers */
.text-accent { color: var(--rv-accent) !important; }
.bg-accent { background-color: var(--rv-accent) !important; }

/* Accent button */
.btn-accent {
    background: var(--rv-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--rv-radius-sm);
    transition: var(--rv-transition);
    letter-spacing: 0.02em;
}
.btn-accent:hover, .btn-accent:focus {
    background: var(--rv-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.btn-outline-accent {
    border: 2px solid var(--rv-accent);
    color: var(--rv-accent);
    background: transparent;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    border-radius: var(--rv-radius-sm);
    transition: var(--rv-transition);
}
.btn-outline-accent:hover {
    background: var(--rv-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--rv-bg-primary) 0%, var(--rv-bg-secondary) 50%, #0d1b3e 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}
.hero-section .lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--rv-text-secondary);
}

/* Search Box */
.search-box {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 1.5rem;
    box-shadow: var(--rv-shadow);
}
.search-box .form-control,
.search-box .form-select {
    background: var(--rv-bg-secondary);
    border: 1px solid var(--rv-border);
    color: var(--rv-text-primary);
    border-radius: var(--rv-radius-sm);
    padding: 0.75rem 1rem;
}
.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--rv-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

/* Vehicle Cards */
.vehicle-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    overflow: hidden;
    transition: var(--rv-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rv-shadow-hover);
    border-color: rgba(233, 69, 96, 0.3);
}
.vehicle-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--rv-transition);
}
.vehicle-card:hover .card-img-top {
    transform: scale(1.05);
}
.vehicle-card .img-wrapper {
    overflow: hidden;
    position: relative;
}
.vehicle-card .badge-status {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}
.vehicle-card .card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.vehicle-card .card-title {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--rv-text-primary);
}
.vehicle-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--rv-transition);
}
.vehicle-card .card-title a:hover {
    color: var(--rv-accent);
}
.vehicle-card .vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.vehicle-card .vehicle-specs .spec-badge {
    background: var(--rv-bg-secondary);
    border: 1px solid var(--rv-border);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--rv-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vehicle-card .price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--rv-accent);
    margin-top: auto;
}
.vehicle-card .card-footer {
    background: transparent;
    border-top: 1px solid var(--rv-border);
    padding: 1rem 1.25rem;
}

/* Section styles */
.section-title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--rv-accent);
    border-radius: 2px;
}
.section-subtitle {
    color: var(--rv-text-secondary);
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* Stats Banner */
.stats-section {
    background: var(--rv-bg-card);
    border-top: 1px solid var(--rv-border);
    border-bottom: 1px solid var(--rv-border);
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--rv-accent);
    line-height: 1;
}
.stat-item .stat-label {
    color: var(--rv-text-secondary);
    font-size: 0.88rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vehicle Detail - Gallery */
.vehicle-gallery {
    border-radius: var(--rv-radius);
    overflow: hidden;
}
.gallery-main-wrap {
    position: relative;
    border-radius: var(--rv-radius);
    overflow: hidden;
}
.vehicle-gallery .main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    cursor: pointer;
    display: block;
}
/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rv-transition);
    z-index: 5;
    backdrop-filter: blur(4px);
}
.gallery-arrow:hover { background: var(--rv-accent); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
/* Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 5;
    backdrop-filter: blur(4px);
}
/* Zoom Button */
.gallery-zoom-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rv-transition);
    z-index: 5;
    backdrop-filter: blur(4px);
}
.gallery-zoom-btn:hover { background: var(--rv-accent); }
/* Thumbnails */
.vehicle-gallery .thumb-list {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.vehicle-gallery .thumb-list img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--rv-transition);
    flex-shrink: 0;
}
.vehicle-gallery .thumb-list img:hover,
.vehicle-gallery .thumb-list img.active {
    border-color: var(--rv-accent);
    opacity: 1;
}
.vehicle-gallery .thumb-list img:not(.active) {
    opacity: 0.6;
}

/* Lightbox Overlay (enhanced) */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-overlay img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox-overlay img.zoomed {
    cursor: grab;
    max-width: none;
    max-height: none;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rv-transition);
}
.lightbox-close:hover { background: var(--rv-accent); }
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rv-transition);
    z-index: 10001;
}
.lightbox-arrow:hover { background: var(--rv-accent); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10001;
}

.spec-table {
    background: var(--rv-bg-card);
    border-radius: var(--rv-radius);
    border: 1px solid var(--rv-border);
}
.spec-table .table {
    margin-bottom: 0;
    color: var(--rv-text-primary);
}
.spec-table .table td {
    padding: 0.85rem 1.2rem;
    border-color: var(--rv-border);
    vertical-align: middle;
}
.spec-table .table td:first-child {
    font-weight: 600;
    color: var(--rv-text-secondary);
    width: 40%;
}

/* Buy Now Steps */
.buy-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.buy-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    color: var(--rv-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: var(--rv-transition);
}
.buy-step:first-child { border-radius: var(--rv-radius-sm) 0 0 var(--rv-radius-sm); }
.buy-step:last-child { border-radius: 0 var(--rv-radius-sm) var(--rv-radius-sm) 0; }
.buy-step.active {
    background: var(--rv-accent);
    color: #fff;
    border-color: var(--rv-accent);
}
.buy-step.completed {
    background: rgba(46, 213, 115, 0.15);
    color: var(--rv-success);
    border-color: var(--rv-success);
}
.buy-step .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Upload Area */
.upload-area {
    border: 2px dashed var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--rv-transition);
    background: var(--rv-bg-secondary);
    position: relative;
}
.upload-area:hover,
.upload-area.dragover {
    border-color: var(--rv-accent);
    background: rgba(233, 69, 96, 0.05);
}
.upload-area .upload-icon {
    font-size: 3rem;
    color: var(--rv-accent);
    margin-bottom: 1rem;
}
.upload-area .upload-text {
    color: var(--rv-text-secondary);
    font-size: 0.95rem;
}
.upload-area .upload-text strong {
    color: var(--rv-accent);
}
.upload-area input[type="file"] {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}
.upload-preview {
    max-width: 300px;
    margin: 1rem auto;
    border-radius: var(--rv-radius-sm);
    border: 2px solid var(--rv-success);
}

/* Terms Box */
.terms-box {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--rv-text-secondary);
}

/* Confirmation */
.confirmation-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 2.5rem;
    text-align: center;
}
.confirmation-card .check-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 213, 115, 0.15);
    color: var(--rv-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

/* Breadcrumbs */
.breadcrumb-nav {
    background: var(--rv-bg-secondary);
    border-bottom: 1px solid var(--rv-border);
    padding: 0.75rem 0;
}
.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
}
.breadcrumb-nav .breadcrumb-item a {
    color: var(--rv-text-secondary);
    text-decoration: none;
}
.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--rv-accent);
}
.breadcrumb-nav .breadcrumb-item.active {
    color: var(--rv-text-primary);
}
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: var(--rv-text-secondary);
}

/* Footer */
.site-footer {
    background: var(--rv-footer-bg);
    border-top: 1px solid var(--rv-border);
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: var(--rv-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--rv-transition);
}
.footer-links a:hover {
    color: var(--rv-accent);
    padding-left: 4px;
}

/* Back to top */
.btn-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(233, 69, 96, 0.4);
}
.btn-back-to-top.show {
    display: flex;
}

/* Form styles */
.form-control, .form-select {
    background: var(--rv-bg-secondary);
    border: 1px solid var(--rv-border);
    color: var(--rv-text-primary);
    border-radius: var(--rv-radius-sm);
}
.form-control:focus, .form-select:focus {
    background: var(--rv-bg-secondary);
    border-color: var(--rv-accent);
    color: var(--rv-text-primary);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rv-text-secondary);
}
.form-check-input:checked {
    background-color: var(--rv-accent);
    border-color: var(--rv-accent);
}

/* Pagination */
.pagination .page-link {
    background: var(--rv-bg-card);
    border-color: var(--rv-border);
    color: var(--rv-text-secondary);
    border-radius: var(--rv-radius-sm);
    margin: 0 2px;
    transition: var(--rv-transition);
}
.pagination .page-link:hover {
    background: var(--rv-accent);
    border-color: var(--rv-accent);
    color: #fff;
}
.pagination .page-item.active .page-link {
    background: var(--rv-accent);
    border-color: var(--rv-accent);
}

/* Feature cards */
.feature-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--rv-transition);
    height: 100%;
}
.feature-card:hover {
    border-color: var(--rv-accent);
    transform: translateY(-4px);
}
.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--rv-accent);
}

/* Info page */
.info-page {
    padding: 4rem 0;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .hero-section { padding: 3rem 0 2.5rem; }
    .vehicle-gallery .main-image { height: 300px; }
    .gallery-arrow { width: 36px; height: 36px; font-size: 1rem; }
    .buy-step { padding: 0.5rem 0.8rem; font-size: 0.8rem; }
    .buy-step .step-number { width: 24px; height: 24px; font-size: 0.75rem; }
}

@media (max-width: 767.98px) {
    .hero-section h1 { font-size: 1.8rem; }
    .vehicle-gallery .main-image { height: 240px; }
    .gallery-arrow { width: 32px; height: 32px; font-size: 0.9rem; }
    .lightbox-arrow { width: 40px; height: 40px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .stat-item { padding: 1.25rem 0.5rem; }
    .stat-item .stat-number { font-size: 1.5rem; }
    .upload-area { padding: 2rem 1rem; }
    .buy-steps { gap: 0; }
    .buy-step { flex: 1; justify-content: center; font-size: 0.75rem; padding: 0.5rem; }
    .buy-step .step-text { display: none; }
    .confirmation-card { padding: 1.5rem; }
}

/* Admin Panel Specific */
.admin-sidebar {
    background: var(--rv-nav-bg);
    min-height: 100vh;
    border-right: 1px solid var(--rv-border);
    width: 260px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    transition: var(--rv-transition);
    overflow-y: auto;
}
.admin-sidebar .sidebar-brand {
    padding: 1.25rem;
    border-bottom: 1px solid var(--rv-border);
    font-size: 1.15rem;
    font-weight: 700;
}
.admin-sidebar .nav-link {
    color: var(--rv-text-secondary);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    transition: var(--rv-transition);
    border-left: 3px solid transparent;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--rv-text-primary);
    background: rgba(233, 69, 96, 0.1);
    border-left-color: var(--rv-accent);
}
.admin-content {
    margin-left: 260px;
    padding: 1.5rem;
    min-height: 100vh;
}
.admin-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 1.5rem;
}
.admin-stat-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 1.5rem;
    transition: var(--rv-transition);
}
.admin-stat-card:hover {
    border-color: var(--rv-accent);
}
.admin-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Admin responsive */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    .admin-sidebar.show {
        transform: translateX(0);
    }
    .admin-content {
        margin-left: 0;
    }
}

/* Table */
.table-dark-custom {
    --bs-table-bg: var(--rv-bg-card);
    --bs-table-border-color: var(--rv-border);
    --bs-table-hover-bg: var(--rv-bg-card-hover);
    --bs-table-striped-bg: rgba(255,255,255,0.02);
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--rv-border);
    border-top-color: var(--rv-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   Vehicle Verification Report
   ============================================= */
.verification-report-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.verification-report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rv-accent), var(--rv-success), var(--rv-info));
}

/* Verification check items */
.vcheck-item {
    background: var(--rv-bg-secondary);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-sm);
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    height: 100%;
    transition: var(--rv-transition);
}
.vcheck-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.vcheck-item i {
    font-size: 1.3rem;
    margin-bottom: 0.15rem;
}
.vcheck-item span {
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.3;
}
.vcheck-item small {
    font-size: 0.72rem;
    opacity: 0.7;
}

/* Pass state (green) */
.vcheck-pass {
    border-color: rgba(46, 213, 115, 0.25);
    background: rgba(46, 213, 115, 0.06);
}
.vcheck-pass i { color: var(--rv-success); }
.vcheck-pass span { color: var(--rv-success); }

/* Fail state (red) */
.vcheck-fail {
    border-color: rgba(233, 69, 96, 0.3);
    background: rgba(233, 69, 96, 0.06);
}
.vcheck-fail i { color: var(--rv-accent); }
.vcheck-fail span { color: var(--rv-accent); }

/* Warning state (orange) */
.vcheck-warn {
    border-color: rgba(255, 165, 2, 0.3);
    background: rgba(255, 165, 2, 0.06);
}
.vcheck-warn i { color: var(--rv-warning); }
.vcheck-warn span { color: var(--rv-warning); }

/* Info state (blue) */
.vcheck-info {
    border-color: rgba(30, 144, 255, 0.2);
    background: rgba(30, 144, 255, 0.05);
}
.vcheck-info i { color: var(--rv-info); }
.vcheck-info span { color: var(--rv-text-primary); }
.vcheck-info small { color: var(--rv-info); font-weight: 600; font-size: 0.85rem; }

/* Mini badges on vehicle cards */
.vehicle-card .card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0.5rem;
}
.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.4;
}
.mini-badge-pass {
    background: rgba(46, 213, 115, 0.12);
    color: var(--rv-success);
    border: 1px solid rgba(46, 213, 115, 0.2);
}
.mini-badge-fail {
    background: rgba(233, 69, 96, 0.1);
    color: var(--rv-accent);
    border: 1px solid rgba(233, 69, 96, 0.2);
}
.mini-badge-info {
    background: rgba(30, 144, 255, 0.1);
    color: var(--rv-info);
    border: 1px solid rgba(30, 144, 255, 0.2);
}
.mini-badge-warn {
    background: rgba(255, 165, 2, 0.1);
    color: var(--rv-warning);
    border: 1px solid rgba(255, 165, 2, 0.2);
}
