/* ==========================================================================
   BSV - Buy & Sell Vehicles - Stylesheet
   Australian Vehicle Marketplace Plugin
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --bsv-primary: #1a56db;
    --bsv-primary-dark: #1648b8;
    --bsv-primary-light: #e8effc;
    --bsv-secondary: #0f172a;
    --bsv-accent: #f59e0b;
    --bsv-success: #10b981;
    --bsv-danger: #ef4444;
    --bsv-text: #1e293b;
    --bsv-text-light: #64748b;
    --bsv-text-muted: #94a3b8;
    --bsv-bg: #ffffff;
    --bsv-bg-light: #f8fafc;
    --bsv-bg-alt: #f1f5f9;
    --bsv-border: #e2e8f0;
    --bsv-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --bsv-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --bsv-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --bsv-radius: 8px;
    --bsv-radius-lg: 12px;
    --bsv-transition: 0.2s ease;
    --bsv-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   Base / Reset
   -------------------------------------------------------------------------- */
.bsv-wrapper {
    font-family: var(--bsv-font);
    color: var(--bsv-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.bsv-wrapper *,
.bsv-wrapper *::before,
.bsv-wrapper *::after {
    box-sizing: border-box;
}

.bsv-wrapper img {
    max-width: 100%;
    height: auto;
}

.bsv-wrapper a {
    text-decoration: none;
    color: var(--bsv-primary);
    transition: color var(--bsv-transition);
}

.bsv-wrapper a:hover {
    color: var(--bsv-primary-dark);
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.bsv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bsv-narrow {
    max-width: 900px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.bsv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--bsv-font);
    border: none;
    border-radius: var(--bsv-radius);
    cursor: pointer;
    transition: all var(--bsv-transition);
    text-decoration: none !important;
    line-height: 1.4;
    white-space: nowrap;
}

.bsv-btn-primary {
    background: var(--bsv-primary);
    color: #fff !important;
}

.bsv-btn-primary:hover {
    background: var(--bsv-primary-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--bsv-shadow-md);
}

.bsv-btn-secondary {
    background: var(--bsv-secondary);
    color: #fff !important;
}

.bsv-btn-secondary:hover {
    background: #1e293b;
    color: #fff !important;
    transform: translateY(-1px);
}

.bsv-btn-sm {
    padding: 7px 16px;
    font-size: 13px;
    background: var(--bsv-primary);
    color: #fff !important;
    border-radius: 6px;
}

.bsv-btn-sm:hover {
    background: var(--bsv-primary-dark);
    color: #fff !important;
}

.bsv-btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.bsv-btn-full {
    width: 100%;
}

.bsv-btn-outline {
    background: transparent;
    border: 2px solid var(--bsv-primary);
    color: var(--bsv-primary) !important;
}

.bsv-btn-outline:hover {
    background: var(--bsv-primary);
    color: #fff !important;
}

/* --------------------------------------------------------------------------
   Select / Form Elements
   -------------------------------------------------------------------------- */
.bsv-select {
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--bsv-font);
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius);
    background: #fff;
    color: var(--bsv-text);
    cursor: pointer;
    transition: border-color var(--bsv-transition);
    appearance: auto;
    min-width: 0;
}

.bsv-select:focus {
    outline: none;
    border-color: var(--bsv-primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.bsv-wrapper input[type="text"],
.bsv-wrapper input[type="email"],
.bsv-wrapper input[type="tel"],
.bsv-wrapper input[type="number"],
.bsv-wrapper input[type="url"],
.bsv-wrapper textarea,
.bsv-wrapper select {
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--bsv-font);
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius);
    background: #fff;
    color: var(--bsv-text);
    width: 100%;
    transition: border-color var(--bsv-transition);
}

.bsv-wrapper input:focus,
.bsv-wrapper textarea:focus,
.bsv-wrapper select:focus {
    outline: none;
    border-color: var(--bsv-primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

/* --------------------------------------------------------------------------
   HERO Section
   -------------------------------------------------------------------------- */
.bsv-hero {
    position: relative;
    background: url('../img/hero-bg.jpg') center center / cover no-repeat;
    padding: 80px 20px 100px;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay for text readability */
.bsv-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        to right,
        rgba(10, 15, 30, 0.85) 0%,
        rgba(10, 15, 30, 0.7) 40%,
        rgba(10, 15, 30, 0.4) 70%,
        rgba(10, 15, 30, 0.25) 100%
    );
    z-index: 1;
}

.bsv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: left;
    padding-left: 40px;
}

.bsv-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bsv-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin: 0;
}

/* Hero Search Form */
.bsv-hero-search {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.bsv-search-form {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: var(--bsv-radius-lg);
    flex-wrap: wrap;
}

.bsv-search-form .bsv-select {
    flex: 1;
    min-width: 140px;
}

.bsv-search-form .bsv-btn {
    padding: 10px 32px;
    min-width: 120px;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.bsv-cta-section {
    padding: 50px 0;
    background: var(--bsv-bg-light);
}

.bsv-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bsv-cta-grid.bsv-cta-single {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.bsv-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    padding: 32px;
    transition: box-shadow var(--bsv-transition);
}

.bsv-cta-box:hover {
    box-shadow: var(--bsv-shadow-lg);
}

.bsv-cta-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--bsv-primary);
    margin: 0 0 8px;
}

.bsv-cta-text p {
    color: var(--bsv-text-light);
    margin: 0 0 16px;
    font-size: 14px;
}

.bsv-cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-left: 20px;
    opacity: 0.8;
}

.bsv-cta-icon svg {
    width: 100%;
    height: 100%;
}

/* Car image in CTA */
.bsv-cta-car-img {
    width: 150px !important;
    height: auto !important;
    opacity: 1 !important;
}

.bsv-cta-car-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* No-action button (looks active but doesn't navigate) */
.bsv-btn-no-action {
    cursor: default !important;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Featured / Cars Grid
   -------------------------------------------------------------------------- */
.bsv-featured-section {
    padding: 60px 0;
    background: var(--bsv-bg);
}

.bsv-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.bsv-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--bsv-secondary);
}

.bsv-view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--bsv-primary) !important;
}

.bsv-cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bsv-catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* --------------------------------------------------------------------------
   Vehicle Card
   -------------------------------------------------------------------------- */
.bsv-car-card {
    background: #fff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    overflow: hidden;
    transition: all var(--bsv-transition);
}

.bsv-car-card:hover {
    box-shadow: var(--bsv-shadow-lg);
    transform: translateY(-4px);
}

.bsv-card-image-link {
    display: block;
    text-decoration: none !important;
}

.bsv-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--bsv-bg-alt);
    position: relative;
}

.bsv-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bsv-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.bsv-card-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}

.bsv-card-title a {
    color: var(--bsv-secondary) !important;
}

.bsv-card-title a:hover {
    color: var(--bsv-primary) !important;
}

.bsv-card-year {
    font-size: 12px;
    color: var(--bsv-text-muted);
    display: block;
    margin-bottom: 10px;
}

.bsv-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.bsv-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--bsv-text-light);
    background: var(--bsv-bg-alt);
    padding: 3px 8px;
    border-radius: 4px;
}

.bsv-meta-item svg {
    flex-shrink: 0;
}

.bsv-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--bsv-text-muted);
    margin-bottom: 12px;
}

.bsv-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--bsv-border);
}

.bsv-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--bsv-primary);
}

/* --------------------------------------------------------------------------
   Trust Section
   -------------------------------------------------------------------------- */
.bsv-trust-section {
    padding: 60px 0;
    background: var(--bsv-bg-light);
    border-top: 1px solid var(--bsv-border);
}

.bsv-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.bsv-trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--bsv-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.bsv-trust-icon svg {
    width: 100%;
    height: 100%;
}

.bsv-trust-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--bsv-secondary);
}

.bsv-trust-item p {
    font-size: 14px;
    color: var(--bsv-text-light);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Catalogue Section
   -------------------------------------------------------------------------- */
.bsv-catalogue-section {
    padding: 40px 0 60px;
}

.bsv-catalogue-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}

/* Filters Sidebar */
.bsv-filters-sidebar {
    background: #fff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.bsv-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bsv-filters-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--bsv-secondary);
}

.bsv-clear-filters {
    background: none;
    border: none;
    color: var(--bsv-primary);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    font-family: var(--bsv-font);
}

.bsv-clear-filters:hover {
    text-decoration: underline;
}

.bsv-filter-group {
    margin-bottom: 16px;
}

.bsv-filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--bsv-text);
    margin-bottom: 6px;
}

.bsv-filter-group .bsv-select {
    width: 100%;
}

/* Results Header */
.bsv-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bsv-border);
}

.bsv-results-count {
    font-size: 14px;
    color: var(--bsv-text-light);
}

.bsv-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bsv-sort-wrap label {
    font-size: 13px;
    color: var(--bsv-text-light);
    white-space: nowrap;
}

.bsv-sort-select {
    min-width: 170px;
}

/* Pagination */
.bsv-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.bsv-page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius);
    background: #fff;
    color: var(--bsv-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--bsv-transition);
    font-family: var(--bsv-font);
}

.bsv-page-btn:hover,
.bsv-page-btn.active {
    background: var(--bsv-primary);
    color: #fff;
    border-color: var(--bsv-primary);
}

.bsv-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--bsv-text-light);
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   Sell Form
   -------------------------------------------------------------------------- */
.bsv-sell-section {
    padding: 50px 0 70px;
}

.bsv-form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.bsv-form-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--bsv-secondary);
}

.bsv-form-intro p {
    color: var(--bsv-text-light);
    font-size: 16px;
    margin: 0;
}

.bsv-form-section {
    background: #fff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.bsv-form-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--bsv-secondary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bsv-primary-light);
}

.bsv-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bsv-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bsv-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bsv-text);
}

.bsv-field-full {
    grid-column: 1 / -1;
}

.bsv-form-actions {
    text-align: center;
    margin-top: 12px;
}

.bsv-form-message {
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--bsv-radius);
    font-size: 14px;
    display: none;
}

.bsv-form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
}

.bsv-form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* --------------------------------------------------------------------------
   About Section — Redesigned
   -------------------------------------------------------------------------- */

/* Shared label style */
.bsv-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bsv-primary);
    margin-bottom: 10px;
}

.bsv-subtitle {
    font-size: 18px;
    color: var(--bsv-text-light);
    margin: 0;
}

/* ── About Hero Banner ── */
.bsv-about-hero-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    overflow: hidden;
}

.bsv-about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.bsv-about-hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, rgba(30,58,95,0.85), rgba(15,23,42,0.70));
    z-index: 1;
}

.bsv-about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 70px 40px;
}

.bsv-about-hero-banner h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.bsv-about-hero-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.bsv-about-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bsv-btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    border-radius: var(--bsv-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--bsv-transition);
    text-decoration: none;
}

.bsv-btn-outline-white:hover {
    background: #ffffff;
    color: var(--bsv-secondary);
}

/* ── Our Mission ── */
.bsv-about-mission {
    padding: 70px 0;
}

.bsv-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bsv-mission-image-wrap {
    position: relative;
}

.bsv-mission-image {
    border-radius: var(--bsv-radius-lg);
    overflow: hidden;
    box-shadow: var(--bsv-shadow-lg);
}

.bsv-mission-image svg {
    display: block;
    width: 100%;
    height: auto;
}

.bsv-mission-badge {
    position: absolute;
    bottom: -16px;
    right: -10px;
    background: #ffffff;
    border-radius: var(--bsv-radius-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--bsv-shadow-lg);
}

.bsv-badge-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--bsv-secondary);
    line-height: 1;
}

.bsv-badge-label {
    display: block;
    font-size: 12px;
    color: var(--bsv-text-light);
    line-height: 1.3;
}

.bsv-mission-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--bsv-secondary);
    margin: 0 0 16px;
    line-height: 1.2;
}

.bsv-mission-content > p {
    color: var(--bsv-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 24px;
}

.bsv-mission-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bsv-mission-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--bsv-text-light);
}

.bsv-mission-checks li svg {
    flex-shrink: 0;
}

/* ── Why Choose Us ── */
.bsv-about-why {
    padding: 70px 0;
    background: var(--bsv-bg-light);
}

.bsv-about-why-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.bsv-about-why-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--bsv-secondary);
    margin: 0 0 12px;
}

.bsv-about-why-header p {
    font-size: 16px;
    color: var(--bsv-text-light);
    margin: 0;
    line-height: 1.7;
}

.bsv-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bsv-why-card {
    background: #ffffff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    padding: 32px 28px;
    transition: box-shadow var(--bsv-transition), transform var(--bsv-transition);
}

.bsv-why-card:hover {
    box-shadow: var(--bsv-shadow-lg);
    transform: translateY(-4px);
}

.bsv-why-icon {
    width: 52px;
    height: 52px;
    background: var(--bsv-primary-light);
    border-radius: var(--bsv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.bsv-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bsv-secondary);
    margin: 0 0 10px;
}

.bsv-why-card p {
    font-size: 14px;
    color: var(--bsv-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── CTA Banner ── */
.bsv-about-cta {
    padding: 0;
}

.bsv-about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--bsv-secondary);
    border-radius: 0;
    padding: 40px 50px;
}

.bsv-about-cta-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
}

.bsv-about-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.bsv-btn-cta,
.bsv-btn-cta:link,
.bsv-btn-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--bsv-primary) !important;
    color: #ffffff !important;
    border: none;
    border-radius: var(--bsv-radius);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: background var(--bsv-transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.bsv-btn-cta:hover,
.bsv-btn-cta:active {
    background: var(--bsv-primary-dark) !important;
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.bsv-contact-section {
    padding: 60px 0;
}

.bsv-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.bsv-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--bsv-secondary);
}

.bsv-contact-info > p {
    color: var(--bsv-text-light);
    font-size: 16px;
    margin: 0 0 32px;
}

.bsv-contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bsv-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bsv-contact-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.bsv-contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--bsv-text);
    margin-bottom: 4px;
}

.bsv-contact-item p {
    color: var(--bsv-text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.bsv-contact-form-wrap {
    background: #fff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    padding: 32px;
}

.bsv-contact-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--bsv-secondary);
}

.bsv-contact-form .bsv-field {
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.bsv-faq-section {
    padding: 60px 0;
}

.bsv-faq-section h1 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 12px;
    color: var(--bsv-secondary);
}

.bsv-faq-section .bsv-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.bsv-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bsv-faq-item {
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.bsv-faq-question {
    width: 100%;
    padding: 18px 24px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--bsv-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--bsv-font);
    transition: background var(--bsv-transition);
}

.bsv-faq-question:hover {
    background: var(--bsv-bg-light);
}

.bsv-faq-question span {
    flex: 1;
}

.bsv-faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bsv-faq-item.active .bsv-faq-arrow {
    transform: rotate(180deg);
}

.bsv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bsv-faq-item.active .bsv-faq-answer {
    max-height: 500px;
}

.bsv-faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--bsv-text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Single Vehicle Page
   -------------------------------------------------------------------------- */
.bsv-single-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    font-family: var(--bsv-font);
    color: var(--bsv-text);
}

.bsv-single-wrap *,
.bsv-single-wrap *::before,
.bsv-single-wrap *::after {
    box-sizing: border-box;
}

.bsv-single-breadcrumb {
    font-size: 13px;
    color: var(--bsv-text-muted);
    margin-bottom: 24px;
}

.bsv-single-breadcrumb a {
    color: var(--bsv-primary);
    text-decoration: none;
}

.bsv-single-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.bsv-single-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--bsv-radius-lg);
    background: var(--bsv-bg-alt);
}

.bsv-single-title {
    font-size: 28px;
    font-weight: 800;
    margin: 20px 0 8px;
    color: var(--bsv-secondary);
}

.bsv-single-subtitle {
    font-size: 14px;
    color: var(--bsv-text-muted);
    margin: 0 0 20px;
}

.bsv-single-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.bsv-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--bsv-border);
    font-size: 14px;
}

.bsv-spec-item:nth-child(odd) {
    border-right: 1px solid var(--bsv-border);
}

.bsv-spec-label {
    color: var(--bsv-text-muted);
    font-weight: 500;
}

.bsv-spec-value {
    font-weight: 600;
    color: var(--bsv-text);
    text-align: right;
}

.bsv-single-description {
    margin-bottom: 28px;
}

.bsv-single-description h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--bsv-secondary);
}

.bsv-single-description p {
    color: var(--bsv-text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* Sidebar / Price Box */
.bsv-single-sidebar {
    position: sticky;
    top: 100px;
}

.bsv-price-box {
    background: #fff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--bsv-shadow);
}

.bsv-price-box .bsv-price-label {
    font-size: 13px;
    color: var(--bsv-text-muted);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bsv-price-box .bsv-price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--bsv-primary);
    margin: 0 0 20px;
}

.bsv-price-box .bsv-btn {
    width: 100%;
    margin-bottom: 10px;
}

.bsv-seller-box {
    background: #fff;
    border: 1px solid var(--bsv-border);
    border-radius: var(--bsv-radius-lg);
    padding: 24px;
}

.bsv-seller-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--bsv-secondary);
}

.bsv-seller-info p {
    font-size: 14px;
    color: var(--bsv-text-light);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bsv-seller-info strong {
    color: var(--bsv-text);
}

/* Related vehicles */
.bsv-related-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--bsv-border);
}

.bsv-related-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--bsv-secondary);
}

/* --------------------------------------------------------------------------
   Loading State
   -------------------------------------------------------------------------- */
.bsv-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--bsv-text-muted);
}

.bsv-loading::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid var(--bsv-border);
    border-top-color: var(--bsv-primary);
    border-radius: 50%;
    animation: bsv-spin 0.6s linear infinite;
    margin-top: 16px;
}

@keyframes bsv-spin {
    to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .bsv-cars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bsv-catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bsv-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bsv-hero {
        padding: 50px 16px 70px;
    }
    .bsv-hero h1 {
        font-size: 28px;
    }
    .bsv-hero p {
        font-size: 15px;
    }
    .bsv-hero-content {
        padding-left: 15px;
    }
    .bsv-search-form {
        flex-direction: column;
    }
    .bsv-search-form .bsv-select,
    .bsv-search-form .bsv-btn {
        min-width: 100%;
    }
    .bsv-cta-grid {
        grid-template-columns: 1fr;
    }
    .bsv-cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .bsv-catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bsv-catalogue-layout {
        grid-template-columns: 1fr;
    }
    .bsv-filters-sidebar {
        position: static;
    }
    .bsv-trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bsv-form-grid {
        grid-template-columns: 1fr;
    }
    .bsv-contact-layout {
        grid-template-columns: 1fr;
    }
    .bsv-single-layout {
        grid-template-columns: 1fr;
    }
    .bsv-single-sidebar {
        position: static;
    }
    .bsv-single-specs {
        grid-template-columns: 1fr;
    }
    .bsv-spec-item:nth-child(odd) {
        border-right: none;
    }
    .bsv-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bsv-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* About page responsive */
    .bsv-about-hero-banner {
        min-height: 340px;
    }
    .bsv-about-hero-inner {
        padding: 50px 24px;
    }
    .bsv-about-hero-banner h1 {
        font-size: 28px;
    }
    .bsv-mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bsv-about-mission {
        padding: 50px 0;
    }
    .bsv-mission-badge {
        right: 10px;
        bottom: -12px;
    }
    .bsv-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bsv-about-why {
        padding: 50px 0;
    }
    .bsv-about-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .bsv-cars-grid {
        grid-template-columns: 1fr;
    }
    .bsv-catalogue-grid {
        grid-template-columns: 1fr;
    }
    .bsv-cta-box {
        flex-direction: column;
        text-align: center;
    }
    .bsv-cta-icon {
        margin: 16px 0 0;
    }
    .bsv-card-image {
        height: 200px;
    }
    .bsv-about-hero-banner h1 {
        font-size: 24px;
    }
    .bsv-about-hero-btns {
        flex-direction: column;
    }
    .bsv-about-hero-btns .bsv-btn-outline-white,
    .bsv-about-hero-btns .bsv-btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   THEME HEADER & FOOTER OVERRIDES — Match BSV Mockup
   ========================================================================== */

/* ── Header Bar ── */
.header-main-area .header {
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    background-color: #ffffff !important;
}

.header .container {
    display: flex !important;
    align-items: center !important;
    padding: 0 30px !important;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Logo ── */
.logo {
    padding: 6px 0 !important;
    min-height: auto !important;
    float: none !important;
    flex-shrink: 0;
    margin-right: 20px !important;
}

body.wp-custom-logo .logo {
    padding: 6px 0 !important;
    margin: 0 20px 0 0 !important;
}

.logo .custom-logo-link,
.logo .custom-logo {
    display: none !important;
}

.logo .site-description,
.logo p.site-description {
    display: none !important;
}

#logo-main {
    display: block !important;
}

#logo-main a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

/* Car icon before site title */
#logo-main a::before {
    content: "" !important;
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a56db'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.logo h2.site-title,
body.wp-custom-logo .logo h2 {
    display: block !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* ── Navigation ── */
#navigation {
    float: none !important;
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    width: auto !important;
    padding: 0 !important;
}

.navextended {
    width: auto !important;
}

.main-navigation {
    font-size: 15px !important;
    display: inline-block !important;
}

.main-navigation ul {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.main-navigation ul li {
    display: inline-block !important;
    margin: 0 !important;
}

.main-navigation ul li a {
    display: block !important;
    padding: 0 18px !important;
    line-height: 48px !important;
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
    white-space: nowrap !important;
}

.main-navigation ul li a:hover,
.main-navigation ul li a:focus,
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
    color: #1a56db !important;
    background-color: transparent !important;
}

/* Dropdown menus */
.main-navigation ul ul {
    display: none !important;
    position: absolute !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
    border-radius: 8px !important;
    min-width: 200px !important;
    z-index: 9999 !important;
    flex-direction: column !important;
    padding: 8px 0 !important;
}

.main-navigation ul li:hover > ul {
    display: block !important;
}

.main-navigation ul ul li a {
    line-height: 42px !important;
    padding: 0 20px !important;
}

.main-navigation ul ul li a:hover {
    background-color: #f1f5f9 !important;
    color: #1a56db !important;
}

/* All nav links same style — no special last-child button */

/* Hide mobile toggle on desktop */
.menu-toggle {
    display: none !important;
}

/* ── Footer overrides ── */

/* Footer info box with social */
.ft-infobox {
    background-color: #f3f4f6 !important;
    padding: 25px 0 !important;
}

.ft-infobox .social-icons a {
    display: inline-flex !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 5px !important;
    transition: transform 0.2s ease !important;
}

.ft-infobox .social-icons a:hover {
    transform: scale(1.1) !important;
}

/* Footer widgets */
.footer-row .cols-3 h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 12px !important;
}

.footer-row .cols-3 ul li a {
    color: #4b5563 !important;
    font-size: 14px !important;
}

.footer-row .cols-3 ul li a:hover {
    color: #1a56db !important;
}

/* Copyright */
.copyright-wrapper {
    background-color: #111827 !important;
    padding: 15px 0 !important;
}

.copyright-txt {
    font-size: 14px !important;
    text-align: center !important;
    color: #d1d5db !important;
}

/* Hide theme credit */
.copyright-txt a[href*="sktthemes"],
.copyright-txt a[href*="sktthemes"] + br {
    display: none !important;
}

/* Remove page title on BSV front page */
body.home .entry-title,
body.home .page-title,
body.page .entry-header {
    display: none !important;
}

/* Remove gap between header and content */
body.home .entry-content,
body.page .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.home #content,
body.home .site-content,
body.home .content-area,
body.home main#main,
body.home .entry-header,
body.home .page-header,
body.home .ast-page-header-section,
body.home .ast-breadcrumbs-wrapper,
body.home #primary,
body.page #content,
body.page .site-content,
body.page .content-area,
body.page main#main,
body.page .page-header,
body.page .ast-page-header-section,
body.page .ast-breadcrumbs-wrapper,
body.page #primary {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.home article.page,
body.page article.page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* SKT theme specific gap fix */
.pagetop,
body.home .pagetop,
body.home .slider-section,
body.home .header-spacer {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove active/current page highlight from header nav links */
.wp-block-navigation .wp-block-navigation-item.current-menu-item a,
.wp-block-navigation .wp-block-navigation-link.current-menu-item a,
.wp-block-navigation-item a[aria-current="page"],
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.ast-header-break-point .main-navigation .current-menu-item > a,
.ast-builder-menu .menu-item.current-menu-item > a {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: inherit !important;
    border-bottom: none !important;
    background: none !important;
}

/* Sell, Contact, FAQ links - visible but no redirect (header + footer) */
.wp-block-navigation-link a[href*="bsv-sell"],
.main-navigation a[href*="bsv-sell"],
.wp-block-navigation a[href*="bsv-sell"],
a[href*="bsv-sell"],
a[href*="bsv-contact"],
a[href*="bsv-faq"] {
    cursor: default !important;
    position: relative !important;
}

/* ── Responsive header ── */
@media screen and (max-width: 1023px) {
    .header .container {
        flex-wrap: wrap !important;
    }

    .menu-toggle {
        display: block !important;
        position: absolute !important;
        right: 20px !important;
        top: 18px !important;
    }

    #navigation {
        width: 100% !important;
        order: 3 !important;
    }

    .main-navigation ul {
        display: none !important;
        flex-direction: column !important;
    }

    .main-navigation.toggled ul {
        display: flex !important;
    }

    .main-navigation ul li a {
        line-height: 45px !important;
        padding: 0 15px !important;
    }

}

