:root {
    --primary: #003087;
    --primary-hover: #002060;
    --primary-light: #e3edfb;
    --bg1: #f7f9fc;
    --bg2: #e9eff6;
    --text: #2b2b2b;
    --muted: #5b5b5b;
    --card: #fff;
    --accent1: #e6f7ec;
    --accent2: #f4f4f4;
    --border1: #b6d2f7;
    --border2: #b9eac7;
    --banner-blue: #e6f0fa;
    --error: #d32f2f;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8faff; 
    color: var(--text);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 2.5rem;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}
header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.375rem;
    align-items: center;
    justify-items: center;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,48,135,0.15);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
header img {
    max-width: 160px;
    height: auto;
}
header h1 {
    font-weight: 700;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    color: var(--primary);
    text-align: center;
}
header .tagline {
    color: var(--muted);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}
#timeDateTime {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* --- CONTACT CHIPS --- */
.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: center;
    justify-content: center;
    margin: 0.625rem 0;
    font-weight: 600;
}
.contact a {
    text-decoration: none;
    transition: transform 0.2s;
}
.contact a:hover {
    transform: scale(1.05);
}
.contact .chip {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: var(--card);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgb(220,230,246);
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    min-width: 140px;
    height: 46px;
    font-size: 0.95rem;
    line-height: 1;
}
.contact .chip svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Chip Colors */
.phone-chip {
    background: var(--accent2);
    color: #222;
    border: 1px solid var(--border2);
}
.phone-chip svg { color: #444; }

.whatsapp-chip {
    background: var(--accent1);
    color: #229e59;
    border: 1px solid var(--border2);
}
.whatsapp-chip svg { color: #229e59; }

.facebook-chip {
    background: var(--primary-light);
    color: #1877f3;
    border: 1px solid var(--border1);
}
.facebook-chip svg { color: #1877f3; }

.email-chip {
    background: #fce8e6;
    color: #c5221f;
    border: 1px solid #f6c5c2;
}
.email-chip svg { color: #d93025; }

.google-chip {
    background: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
}

/* --- MAIN LAYOUT --- */
.container-main {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.625rem;
    justify-content: center;
    align-items: stretch;
}
.form-section, .result-section {
    flex: 1 1 340px;
    min-width: 340px;
    max-width: 100%; 
    background: var(--card);
    border: 1px solid rgba(0,48,135,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 680px;
}
.form-section-title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1.15rem;
    border-bottom: 2px solid var(--primary); 
    padding-bottom: 5px;
    margin-top: 0.5rem;
}
#cbslRate {
    margin-bottom: 1rem;
    text-align: center;
}
label {
    display: block;
    margin-top: 0.875rem;
    font-weight: 700;
    font-size: 0.98rem;
}
input, select {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.375rem;
    border: 1px solid var(--primary);
    border-radius: 0.625rem;
    font-size: 1rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus {
    outline: none;
    border-color: var(--primary-hover);
    box-shadow: 0 0 5px rgba(0,48,135,0.3);
}
select {
    appearance: none;
    background: #fff url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='14' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%23003087' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.75rem center/1rem 1rem;
}
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.125rem;
}
.blue-btn {
    flex: 1 1 180px;
    padding: 0.75rem;
    border: none;
    border-radius: 0.625rem;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.18s, transform 0.2s;
    font-weight: 700;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blue-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.blue-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
#downloadBtn {
    display: none;
    flex: 1 1 180px;
    height: 2.75rem;
    margin-top: 1.125rem;
}
.result-section-title {
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--primary);
    font-size: 1.12rem;
}
#result {
    margin-top: 0;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
thead th {
    background: var(--primary);
    color: #fff;
    padding: 0.625rem;
    text-align: left;
    font-weight: 600;
}
tbody td {
    padding: 0.5625rem 0.625rem;
    border-bottom: 1px solid rgba(0,48,135,0.15);
}
tfoot td {
    padding: 0.625rem;
    font-weight: 700;
    background: #f0f4fa;
}
.charts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.25rem;
}
.chart-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0.5rem 0;
    padding: 0.5rem;
}
.chart-title {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
#pieChart, #taxPieChart {
    display: block;
    margin: 0 auto;
    background: transparent;
    max-width: 100%;
}
.faq-section, .info-section, .disclaimer-section, .social-proof {
    background: var(--card);
    border: 1px solid rgba(0,48,135,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.25rem;
    text-align: center;
}
.social-proof {
    padding: 0.875rem 1.5rem;
}
.faq-section h2, .info-section h2, .disclaimer-section h2, .social-proof h2 {
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.125rem;
}
.faq-item {
    margin-bottom: 1rem;
    text-align: left;
}
.faq-item h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin: 0 0 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
    display: block;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.faq-item h3:hover {
    color: var(--primary);
}
.faq-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    display: none;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}
.faq-item.active p {
    display: block !important;
}
.faq-indicator {
    margin-left: 0.5rem;
    transition: transform 0.3s;
    pointer-events: none;
}
.info-section p, .disclaimer-section p, .social-proof p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.info-section h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin: 0 0 0.25rem 0;
    text-align: left;
}
.info-section ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
    list-style-type: disc;
    list-style-position: inside;
}
.info-section li {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.info-section li p {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
}
.info-section a, .result-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.info-section a:hover, .result-section a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}
.disclaimer-section ul {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
    color: var(--muted);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.faq-indicator {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}
.faq-item.active .faq-indicator {
    transform: rotate(180deg);
}
.result-placeholder {
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 1.5rem;
}
.result-help {
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
}
.error-message {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    text-align: left;
    background: #ffebee;
    padding: 0.5rem;
    border-radius: 0.25rem;
}
.warning-box {
    background: #ffebee;
    border: 1px solid var(--error);
    color: var(--error);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.625rem;
    font-size: 0.95rem;
    text-align: center;
}
.loading {
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.loading::before {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 640px) {
    body {
        padding: 1rem;
        width: 100vw;
        overflow-x: hidden;
    }
    header img {
        max-width: 140px;
    }
    header h1 {
        font-size: clamp(1.5rem, 4.5vw, 1.9rem);
    }
    .form-section, .result-section, .social-proof {
        padding: 1rem;
        min-width: 100%;
        max-width: 100%;
        min-height: auto;
        box-sizing: border-box;
    }
    .social-proof {
        padding: 0.75rem 1rem;
    }
    .container-main {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    /* --- 2x2 GRID FOR CONTACT BUTTONS ON MOBILE --- */
    .contact {
        display: grid;                 
        grid-template-columns: 1fr 1fr; /* Two equal columns */
        gap: 0.75rem;
        margin: 0.5rem 0;
        width: 100%;
    }
    .contact a {
        width: 100%;
        text-align: center;
    }
    .contact .chip {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.625rem;
        margin: 0; /* Important for grid */
    }
    
    .btn-row {
        gap: 0.5rem;
        width: 100%;
    }
    .blue-btn {
        font-size: 0.95rem;
        width: 100%;
    }
    #downloadBtn {
        margin-top: 1rem;
        width: 100%;
    }
    .faq-section, .info-section, .disclaimer-section {
        padding: 1rem;
        width: 100%;
    }
    .faq-section h2, .info-section h2, .disclaimer-section h2, .social-proof h2 {
        font-size: 1.2rem;
    }
    .faq-item h3, .info-section h3 {
        font-size: 1rem;
    }
    #pieChart, #taxPieChart {
        max-width: 100%;
        width: 100%;
    }
    .result-placeholder, .result-help {
        font-size: 0.9rem;
    }
    .charts-container {
        flex-direction: column;
        width: 100%;
    }
    .chart-wrapper {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }
}

/* --- HIDE CHART TITLES UNTIL CALCULATED --- */
.charts-container {
    display: none; 
}
.result-section:has(table) .charts-container {
    display: flex; 
}

/* --- ADVERTISEMENT POSTER STYLING --- */
.poster-container {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
}
.poster-container img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,48,135,0.15);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none;
}
.float-wa:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* --- SECONDARY BUTTON STYLE --- */
.outline-btn {
    flex: 1 1 180px;
    padding: 0.75rem;
    border: 2px solid var(--primary);
    border-radius: 0.625rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary);
    background: #fff;
    font-weight: 700;
    height: 2.75rem;
    transition: background 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outline-btn:hover {
    background: var(--bg1);
}

/* --- NEW PROFESSIONAL FOOTER STYLE (ROUNDED CARD) --- */
.final-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 1.5rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    background: #fdfdfd;
    
    /* MATCHING THE "VIBE" OF OTHER CARDS */
    border-radius: 1rem;
    border: 1px solid rgba(0,48,135,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.footer-logo-img {
    max-width: 80px;
    height: auto;
    margin-bottom: 0.8rem;
    /* Opacity deleted for brightness */
}

.legal-links {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}
.legal-links a {
    color: var(--muted);
    text-decoration: none;
    padding: 0 0.5rem;
    transition: color 0.1s;
}
.legal-links a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* --- GOOGLE REVIEW WIDGET --- */
.google-review-section {
    background: #fff;
    border: 1px solid rgba(0,48,135,0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    max-width: 100%;
}

/* Header Row */
.g-badge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
    padding-bottom: 0.8rem;
}
.g-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: #3c4043;
    font-weight: 700;
}
.g-write-btn {
    font-size: 0.85rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}
.g-write-btn:hover { text-decoration: underline; }

/* Review Card Itself */
.review-single-card {
    background: #f9f9f9;
    border-radius: 0.8rem;
    padding: 1.25rem;
    position: relative;
    /* RESET vertical margin from previous code */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    
    /* Horizontal Layout Logic */
    flex: 1; /* All cards grow equally */
    min-width: 280px; /* Minimum width so they don't get squashed */
    
    /* Snap alignment */
    scroll-snap-align: start;
    
    /* Ensure uniform height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.reviewer-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}
.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #8e24aa; /* Google Purple for default */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}
/* Style for real user profile photo */
.reviewer-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circle */
    object-fit: cover;  /* Prevents stretching */
    border: 1px solid #e0e0e0;
}
.r-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #202124;
    
    /* ALIGNMENT FIX START */
    line-height: 1.35;        /* Sets specific height for each line */
    min-height: 2.7em;        /* Forces height to equal exactly 2 lines (1.35 * 2) */
    display: -webkit-box;     /* Safety: Truncates text if it exceeds 2 lines */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: flex;            /* Uses Flexbox to align text properly */
    align-items: center;      /* Vertically centers 1-line names (Optional: remove if you prefer top alignment) */
    /* ALIGNMENT FIX END */
}
.r-meta {
    font-size: 0.75rem;
    color: #5f6368;
}
.small-g-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 20px;
    height: 20px;
}

.r-stars {
    color: #e37400;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}
.r-text {
    font-size: 0.95rem;
    color: #3c4043;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1rem;
}
.r-link {
    font-size: 0.85rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

/* --- LOGO LINKS & HOVER --- */
.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo-link:hover {
    transform: scale(1.05); /* The Zoom Effect */
    cursor: pointer;
}
/* Ensure images inside don't interfere with the link's layout */
.logo-link img {
    display: block; 
}

/* --- RATE CHART CLEANUP (Ensures no dark lines) --- */
.rate-chart-container {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    width: 100%;
}
.rate-chart-container img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: none !important; 
    border: none !important;
    display: block; 
    margin: 0 auto;
}

/* --- HORIZONTAL REVIEWS (Side-by-Side) --- */
.reviews-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto; /* Enables horizontal scrolling on mobile */
    padding-bottom: 0.5rem; /* Space for scrollbar */
    scroll-snap-type: x mandatory; /* Smooth snapping on mobile */
    -webkit-overflow-scrolling: touch;
}

/* Optional: Cleaner Scrollbar */
.reviews-row::-webkit-scrollbar {
    height: 6px;
}
.reviews-row::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

/* --- NAVIGATION ARROWS FOR REVIEWS --- */
.google-review-section {
    position: relative; /* Essential for positioning arrows */
}

.nav-arrow {
    position: absolute;
    top: 55%; /* Centers vertically relative to reviews */
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

/* Optional: Hide arrows on desktop if you prefer scrollbar, 
   but keeping them visible is good UX for everyone */
@media (min-width: 1024px) {
    .nav-arrow { width: 40px; height: 40px; }
}

/* --- CLICKABLE LOGO STYLING --- */
.logo-link {
    display: inline-block; /* Keeps image behaving correctly */
    text-decoration: none; /* Removes any default underline */
    border: none;          /* Removes blue border on some browsers */
    transition: transform 0.2s ease; /* Adds a nice subtle zoom effect */
}

.logo-link:hover {
    transform: scale(1.03); /* Slight zoom when hovered */
    cursor: pointer;
}

.logo-link img {
    display: block; /* Removes tiny gap at bottom of image */
}

/* --- VEHICLE SHOWCASE SLIDER --- */
.vehicle-showcase-section {
    position: relative;
    margin: 2rem 0;
    padding: 0 1rem;
}
.vehicle-showcase-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.vehicle-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE */
}
.vehicle-slider::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome */

.vehicle-card {
    flex: 0 0 300px; /* Slightly wider for the data grid */
    background: #fff;
    border: 1px solid rgba(0,48,135,0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}
.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,48,135,0.15);
}

.veh-img-container {
    position: relative;
    height: 190px;
    background: #eee;
}
.veh-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.veh-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffcc00;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.veh-info {
    padding: 1.25rem;
}
.veh-info h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
}

/* THE 2x2 DATA GRID */
.veh-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #f8faff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.spec-item {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
/* Icons for specs (optional, using emojis for simplicity) */
.spec-icon { opacity: 0.7; }

.veh-price-box {
    text-align: center;
    margin-bottom: 1rem;
}
.price-tag {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}
.price-sub {
    font-size: 0.75rem;
    color: #888;
}

.veh-btn {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}
.veh-btn:hover {
    background: var(--primary);
    color: white;
}

/* --- CONTENT PROTECTION --- */
.blog-content, .blog-body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
}

/* Allow selection on code blocks or specific areas if needed */
.allow-select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
