:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

* { font-family: 'Inter', sans-serif; box-sizing: border-box; }

.text-14 { font-size: 14px; line-height: 20px; }
.text-16 { font-size: 16px; line-height: 24px; }
.text-20 { font-size: 20px; line-height: 28px; }
.text-24 { font-size: 24px; line-height: 32px; }
.text-32 { font-size: 32px; line-height: 40px; }
.text-48 { font-size: 48px; line-height: 56px; }

.card-enterprise {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
.card-enterprise:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover { background: var(--gray-50); border-color: var(--gray-400); }

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp:hover { background: #1ebe57; }

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
}
.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.stepper { display: flex; align-items: center; margin: 32px 0; }
.step { display: flex; align-items: center; flex: 1; }
.step-circle {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px;
}
.step-active .step-circle { background: var(--primary); color: white; }
.step-completed .step-circle { background: #10b981; color: white; }
.step-inactive .step-circle { background: var(--gray-200); color: var(--gray-500); }
.step-line { flex: 1; height: 2px; background: var(--gray-200); margin: 0 16px; }
.step-active .step-line, .step-completed .step-line { background: var(--primary); }

.toast {
    position: fixed; top: 24px; left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: white; border: 1px solid var(--gray-200);
    border-radius: 12px; padding: 16px 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000; transition: transform 0.3s ease;
    text-align: center; min-width: 300px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-success { border-left: 4px solid #10b981; }
.toast-info { border-left: 4px solid #3b82f6; }
.toast-error { border-left: 4px solid #ef4444; }

.modal {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal.show { opacity: 1; visibility: visible; }
.modal-content {
    background: white; border-radius: 16px; padding: 32px;
    max-width: 500px; width: 90%; max-height: 90vh;
    overflow-y: auto; transform: scale(0.9); transition: transform 0.3s ease;
}
.modal.show .modal-content { transform: scale(1); }

.hero-gradient { background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a8a 50%, var(--gray-800) 100%); }
.hero-beach { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0f172a 100%); }

.filter-bar {
    display: flex; gap: 16px; align-items: center;
    padding: 20px; background: white;
    border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 24px;
}

/* Fleet cards — styled like carrentalsindabolim.com */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
}
@media (min-width: 1024px) {
    .fleet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}
@media (min-width: 1280px) {
    .fleet-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.vehicle-card-zoomcar { height: 100%; min-width: 0; }
.vehicle-card-zoomcar-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.vehicle-card-zoomcar-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.vehicle-card-zoomcar-media {
    position: relative;
    min-height: 168px;
    height: 168px;
    background: #041f4f;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px 10px 0;
}
.vehicle-card-zoomcar-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(96, 165, 250, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.07) 0%, transparent 40%);
    pointer-events: none;
}
.vehicle-card-zoomcar-hero {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 55%;
}
.vehicle-card-zoomcar-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}
.vehicle-card-zoomcar-hero-model {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: #fff;
}
.vehicle-card-zoomcar-hero-trans {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
}
.vehicle-card-zoomcar-image {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 92%;
    height: 130px !important;
    max-height: 130px !important;
    object-fit: contain;
    object-position: center bottom;
}
.vehicle-card-zoomcar-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.95rem 1rem 1.05rem;
}
.vehicle-card-zoomcar-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
}
.vehicle-card-zoomcar-featured,
.vehicle-card-zoomcar-tier,
.vehicle-card-zoomcar-status {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 9999px;
}
.vehicle-card-zoomcar-featured {
    color: #111827;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}
.vehicle-card-zoomcar-tier.is-premium { color: #92400e; background: #fef3c7; }
.vehicle-card-zoomcar-tier.is-standard { color: #1d4ed8; background: #eff6ff; }
.vehicle-card-zoomcar-tier.is-economy { color: #047857; background: #ecfdf5; }
.vehicle-card-zoomcar-status.is-available { color: #047857; background: #ecfdf5; }
.vehicle-card-zoomcar-category {
    margin: 0 0 0.3rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
}
.vehicle-card-zoomcar-head { margin-bottom: 0.55rem; }
.vehicle-card-zoomcar-title {
    margin: 0 0 0.2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
}
.vehicle-card-zoomcar-meta {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #6b7280;
}
.vehicle-card-zoomcar-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.55rem;
    font-size: 0.75rem;
    color: #374151;
}
.vehicle-card-zoomcar-rating-stars { color: #10b981; font-size: 0.8rem; line-height: 1; }
.vehicle-card-zoomcar-rating-value { font-weight: 700; color: #111827; }
.vehicle-card-zoomcar-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.55rem;
    padding: 0;
    list-style: none;
}
.vehicle-card-zoomcar-specs li {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #4b5563;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    padding: 0.22rem 0.52rem;
    border-radius: 9999px;
    text-transform: capitalize;
}
.vehicle-card-zoomcar-km {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
}
.vehicle-card-zoomcar-pickup {
    margin: 0 0 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #047857;
}
.vehicle-card-zoomcar-divider {
    height: 1px;
    background: #f3f4f6;
    margin-bottom: 0.75rem;
}
.vehicle-card-zoomcar-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
}
.vehicle-card-zoomcar-price-wrap { min-width: 0; }
.vehicle-card-zoomcar-price-label {
    display: block;
    margin-bottom: 0.1rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
}
.vehicle-card-zoomcar-price {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
}
.vehicle-card-zoomcar-price-unit {
    margin-left: 0.1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
}
.vehicle-card-zoomcar-cta {
    display: none;
}
.vehicle-card-zoomcar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.vehicle-card-zoomcar-btn:hover {
    background: #1f2937;
    color: #fff;
}
.vehicle-card-zoomcar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: stretch;
}
.vehicle-card-zoomcar-btn-outline {
    background: #fff;
    color: #111827;
    border: 1px solid #e5e7eb;
}
.vehicle-card-zoomcar-btn-outline:hover {
    background: #f9fafb;
    color: #111827;
}

.vehicle-card-zoomcar-title a {
    color: inherit;
    text-decoration: none;
}
.vehicle-card-zoomcar-title a:hover { color: #2563eb; }
.vehicle-card-zoomcar-media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Vehicle show pages (carrentalsindabolim-style) */
.vehicle-show-zoomcar { background: #fff; padding-bottom: 2.5rem; }
.vehicle-show-zoomcar-hero { padding-top: 1.75rem; padding-bottom: 1.25rem; text-align: center; }
.vehicle-show-zoomcar-breadcrumbs { margin-bottom: 1rem; text-align: left; }
.vehicle-show-zoomcar-header { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-bottom: 0.65rem; }
.vehicle-show-zoomcar-subtitle { max-width: 40rem; margin: 0 auto; font-size: 0.9375rem; line-height: 1.55; color: #6b7280; }
.vehicle-show-zoomcar-rating { display: inline-flex; align-items: center; gap: 0.35rem; margin: 0.75rem 0 0; font-size: 0.875rem; font-weight: 700; color: #111827; }
.vehicle-show-zoomcar-rating-stars { color: #f59e0b; letter-spacing: 0.05em; }
.vehicle-show-zoomcar-rating-count { font-weight: 600; color: #6b7280; }
.vehicle-show-zoomcar-body { padding-top: 0.5rem; }
.vehicle-show-zoomcar-layout { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: start; }
.vehicle-show-zoomcar-main { display: flex; flex-direction: column; gap: 1.75rem; min-width: 0; }
.vehicle-show-zoomcar-sidebar { min-width: 0; display: flex; flex-direction: column; gap: 1.25rem; }

.home-zoomcar-header, .home-blog-zoomcar-header {
    display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-bottom: 1.25rem;
}
.home-zoomcar-line, .home-blog-zoomcar-line {
    display: none; height: 1px; flex: 1; max-width: 10rem; background: #d1d5db;
}
.home-zoomcar-title, .home-blog-zoomcar-title {
    font-size: 1.375rem; font-weight: 700; color: #1f2937; text-align: center;
    letter-spacing: -0.01em; white-space: nowrap;
}
.vehicle-show-specs-header.home-zoomcar-header { margin-bottom: 1.15rem; }
.vehicle-show-specs-header .home-zoomcar-title { font-size: 1.125rem; }

.vehicle-show-gallery-main {
    border-radius: 12px; overflow: hidden; background: #f3f4f6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.vehicle-show-gallery-image {
    display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
}
.vehicle-show-gallery-thumbs {
    display: flex; gap: 0.5rem; margin-top: 0.75rem; overflow-x: auto; padding-bottom: 0.15rem;
}
.vehicle-show-gallery-thumb {
    flex-shrink: 0; width: 5rem; height: 3.75rem; border-radius: 8px; overflow: hidden;
    border: 2px solid transparent; padding: 0; background: #f3f4f6; cursor: pointer;
    opacity: 0.75; transition: opacity 0.2s ease, border-color 0.2s ease;
}
.vehicle-show-gallery-thumb:hover { opacity: 1; }
.vehicle-show-gallery-thumb.is-active { border-color: #111827; opacity: 1; }
.vehicle-show-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.vehicle-show-zoomcar-intro { display: flex; flex-direction: column; gap: 0.85rem; }
.vehicle-show-zoomcar-labels { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vehicle-show-zoomcar-chips {
    display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; list-style: none;
}
.vehicle-show-zoomcar-chips li {
    font-size: 0.75rem; font-weight: 600; color: #374151; background: #f9fafb;
    border: 1px solid #f3f4f6; padding: 0.25rem 0.55rem; border-radius: 9999px; text-transform: capitalize;
}

.vehicle-show-about-zoomcar { display: flex; flex-direction: column; gap: 0; }
.vehicle-show-about-zoomcar-subtitle {
    max-width: 40rem; margin: 0 auto 1.15rem; text-align: center;
    font-size: 0.9375rem; line-height: 1.55; color: #6b7280;
}
.vehicle-show-about-zoomcar-highlights {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem;
    margin: 0 auto 1.35rem; padding: 0; list-style: none; max-width: 42rem;
}
.vehicle-show-about-zoomcar-highlight {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.8125rem; font-weight: 600; color: #374151;
}
.vehicle-show-about-zoomcar-highlight svg { width: 1rem; height: 1rem; color: #10b981; flex-shrink: 0; }
.vehicle-show-about-zoomcar-card {
    position: relative; overflow: hidden; border: 1px solid #f3f4f6;
    border-radius: 14px; background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.vehicle-show-about-zoomcar-accent {
    height: 4px; background: linear-gradient(90deg, #041f4f, #0a3d8f, #10b981);
}
.vehicle-show-about-zoomcar-body { padding: 1.35rem 1.25rem 1.4rem; }
.vehicle-show-about-zoomcar-prose { margin: 0; color: #374151; }
.vehicle-show-about-zoomcar-prose > p:first-of-type {
    margin-top: 0; margin-bottom: 1.25rem; padding-bottom: 1.25rem;
    border-bottom: 1px solid #f3f4f6; font-size: 1.0625rem; line-height: 1.7; color: #4b5563;
}
.vehicle-show-about-zoomcar-prose h2 {
    margin: 1.5rem 0 0.65rem; padding-left: 0.85rem; border-left: 3px solid #10b981;
    font-size: 1.0625rem; font-weight: 700; line-height: 1.35; color: #111827;
}
.vehicle-show-about-zoomcar-prose h2:first-of-type { margin-top: 0; }
.vehicle-show-about-zoomcar-prose p {
    margin: 0 0 0.85rem; font-size: 0.9375rem; line-height: 1.65; color: #4b5563;
}
.vehicle-show-about-zoomcar-prose ul {
    display: grid; gap: 0.5rem; margin: 0.75rem 0 1rem; padding: 0; list-style: none;
}
.vehicle-show-about-zoomcar-prose ul li {
    display: flex; align-items: flex-start; gap: 0.55rem; padding: 0.75rem 0.9rem;
    border: 1px solid #f3f4f6; border-radius: 10px; background: #f9fafb;
    font-size: 0.875rem; line-height: 1.5; color: #374151;
}
.vehicle-show-about-zoomcar-prose ul li::before {
    content: "✓"; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; width: 1.25rem; height: 1.25rem; border-radius: 9999px;
    background: #ecfdf5; color: #10b981; font-size: 0.625rem; font-weight: 700;
}
.vehicle-show-about-zoomcar-prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; color: #111827; }
.vehicle-show-about-zoomcar-prose a:hover { color: #000; }
.vehicle-show-about-zoomcar-prose table.seo-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.vehicle-show-about-zoomcar-prose table.seo-table th,
.vehicle-show-about-zoomcar-prose table.seo-table td {
    border: 1px solid #f3f4f6; padding: 0.65rem 0.85rem; text-align: left;
}
.vehicle-show-about-zoomcar-prose table.seo-table th { background: #f9fafb; font-weight: 700; }

.vehicle-show-booking-card {
    border: 1px solid #f3f4f6; border-radius: 14px; padding: 1.35rem 1.25rem 1.3rem;
    background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.vehicle-show-booking-eyebrow {
    margin: 0 0 0.35rem; font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: #9ca3af;
}
.vehicle-show-booking-price { margin-bottom: 1rem; }
.vehicle-show-booking-price-value { font-size: 2rem; font-weight: 700; line-height: 1.1; color: #111827; }
.vehicle-show-booking-price-unit { margin-left: 0.15rem; font-size: 0.9375rem; font-weight: 600; color: #6b7280; }
.vehicle-show-booking-breakdown .card {
    margin-bottom: 1rem; border: 1px solid #f3f4f6; border-radius: 10px;
    box-shadow: none; background: #fafafa;
}
.price-breakdown-zoomcar-title { margin: 0 0 0.25rem; font-size: 0.875rem; font-weight: 700; color: #111827; }
.price-breakdown-zoomcar-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0; font-size: 0.8125rem; color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}
.price-breakdown-zoomcar-row:last-child { border-bottom: none; }
.vehicle-show-booking-deposit { margin: 0 0 1rem; font-size: 0.75rem; line-height: 1.45; color: #6b7280; }
.vehicle-show-booking-cta { display: flex; width: 100%; justify-content: center; text-align: center; text-decoration: none; }
.vehicle-show-booking-link {
    display: block; margin-top: 0.85rem; text-align: center; font-size: 0.8125rem;
    font-weight: 600; color: #111827; text-decoration: underline; text-underline-offset: 2px;
}
.vehicle-show-booking-link:hover { color: #000; }

.vehicle-show-specs {
    border: 1px solid #f3f4f6; border-radius: 14px; padding: 1.35rem 1.25rem 1.3rem;
    background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.vehicle-show-specs-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem 1rem; margin: 0;
}
.vehicle-show-specs-grid dt {
    margin: 0 0 0.15rem; font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; color: #9ca3af;
}
.vehicle-show-specs-grid dd { margin: 0; font-size: 0.875rem; font-weight: 600; color: #111827; text-transform: capitalize; }
.vehicle-show-specs-features { margin-top: 1.25rem; padding-top: 1.15rem; border-top: 1px solid #f3f4f6; }
.vehicle-show-specs-features-title {
    margin: 0 0 0.75rem; font-size: 0.8125rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase; color: #374151;
}
.vehicle-show-specs-features-list {
    display: grid; grid-template-columns: 1fr; gap: 0.45rem; margin: 0; padding: 0; list-style: none;
}
.vehicle-show-specs-features-list li {
    display: flex; align-items: center; gap: 0.45rem; font-size: 0.8125rem; color: #4b5563;
}
.vehicle-show-specs-features-list svg { width: 0.95rem; height: 0.95rem; color: #10b981; flex-shrink: 0; }

.vehicle-show-similar { margin-top: 0.5rem; padding-top: 1.5rem; border-top: 1px solid #f3f4f6; }
.vehicle-show-faq { margin-top: 0.5rem; padding-top: 1.5rem; border-top: 1px solid #f3f4f6; }
.vehicle-show-enquiry-form { max-width: 36rem; margin: 0 auto; }

.vehicle-similar-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.vehicle-similar-card {
    display: block; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    overflow: hidden; text-decoration: none; color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vehicle-similar-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.vehicle-similar-card__media {
    background: #041f4f; padding: 10px; display: flex; align-items: center; justify-content: center; min-height: 110px;
}
.vehicle-similar-card__media img {
    width: 100%; height: 90px !important; object-fit: contain;
}
.vehicle-similar-card__body { padding: 12px; }
.vehicle-similar-card__labels { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.45rem; }
.vehicle-similar-card__name { font-weight: 700; font-size: 14px; color: #111827; }
.vehicle-similar-card__meta { font-size: 12px; color: #6b7280; margin: 4px 0; text-transform: capitalize; }
.vehicle-similar-card__price { font-size: 13px; color: #111827; font-weight: 700; margin-top: 4px; }

@media (min-width: 640px) {
    .home-zoomcar-line, .home-blog-zoomcar-line { display: block; }
    .vehicle-show-about-zoomcar-prose ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
    .vehicle-show-specs-features-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .vehicle-show-zoomcar-hero { padding-top: 2.25rem; padding-bottom: 1.5rem; }
    .home-zoomcar-title, .home-blog-zoomcar-title { font-size: 1.5rem; }
    .vehicle-show-about-zoomcar-body { padding: 1.6rem 1.5rem 1.55rem; }
    .vehicle-show-specs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .vehicle-show-zoomcar-layout { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 2rem; }
    .vehicle-show-zoomcar-sidebar { position: sticky; top: 5.5rem; }
}

/* Legacy vehicle detail (unused after v4 regen) */
.vehicle-detail-hero { background: #fff; border-bottom: 1px solid #e5e7eb; }
.vehicle-detail-media {
    position: relative;
    background: #041f4f;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 16px 12px;
}
.vehicle-detail-tier {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.vehicle-detail-image {
    max-width: 95%;
    height: 220px !important;
    max-height: 220px !important;
    object-fit: contain;
}
.vehicle-detail-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}
.vehicle-detail-specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.vehicle-detail-specs-row span {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: capitalize;
}
.vehicle-detail-price-box { margin-top: 8px; }
.vehicle-detail-price-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.vehicle-detail-price {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}
.vehicle-detail-price span { font-size: 16px; font-weight: 500; color: #6b7280; }
.vehicle-detail-deposit {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

/* Fleet hub grid */
.vehicle-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.vehicle-hub-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vehicle-hub-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.vehicle-hub-card__media {
    background: #041f4f;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}
.vehicle-hub-card__media img {
    height: 110px !important;
    max-width: 100%;
    object-fit: contain;
}
.vehicle-hub-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.vehicle-hub-card__labels {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; margin-bottom: 0.35rem;
}
.vehicle-hub-card__cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}
.vehicle-hub-card__title { font-size: 16px; font-weight: 700; margin: 6px 0 4px; color: #111827; }
.vehicle-hub-card__meta { font-size: 12px; color: #6b7280; margin-bottom: 8px; text-transform: capitalize; }
.vehicle-hub-card__price { font-size: 15px; font-weight: 700; color: #111827; margin-top: auto; }
.vehicle-hub-card__link { font-size: 11px; font-weight: 700; color: #2563eb; margin-top: 8px; text-transform: uppercase; }

/* Fleet hub filters */
.fleet-filter-chip {
    font-size: 0.8125rem; font-weight: 600; color: #374151; background: #fff;
    border: 1px solid #e5e7eb; padding: 0.45rem 0.95rem; border-radius: 9999px;
    cursor: pointer; transition: all 0.2s ease;
}
.fleet-filter-chip:hover { border-color: #93c5fd; color: #1d4ed8; }
.fleet-filter-chip.is-active {
    background: #111827; border-color: #111827; color: #fff;
}
.fleet-hub-empty.hidden { display: none; }

.location-card {
    background: white; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--gray-200); transition: all 0.2s ease;
}
.location-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-2px); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; color: var(--gray-500); }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: white; border: 1px solid var(--gray-200);
    border-radius: 8px; min-width: 220px; padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block; padding: 10px 16px; font-size: 14px;
    color: var(--gray-700); text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); }

.sticky-booking { position: sticky; top: 80px; }

.prose h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin: 24px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 600; color: var(--gray-800); margin: 20px 0 8px; }
.prose p { color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.prose ul { list-style: disc; padding-left: 24px; color: var(--gray-600); margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--gray-600); font-size: 14px; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

@media (max-width: 768px) {
    .text-48 { font-size: 32px; line-height: 40px; }
    .text-32 { font-size: 24px; line-height: 32px; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .stepper { flex-direction: column; gap: 16px; }
    .step-line { display: none; }
    .nav-desktop { display: none !important; }
    .mobile-menu-btn { display: block !important; }
    .vehicle-card-zoomcar-footer { flex-direction: column; align-items: stretch; }
    .vehicle-card-zoomcar-btn { width: 100%; text-align: center; }
}

.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

/* SEO long-form content */
.seo-content, .seo-article { color: var(--gray-700); line-height: 1.8; }
.seo-content h2, .seo-article h2 {
    font-size: 26px; font-weight: 700; color: var(--gray-900);
    margin: 40px 0 16px; padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
    scroll-margin-top: 90px;
}
.seo-content h3, .seo-article h3 {
    font-size: 20px; font-weight: 600; color: var(--gray-800);
    margin: 28px 0 12px; scroll-margin-top: 90px;
}
.seo-content p, .seo-article p { margin-bottom: 18px; font-size: 16px; }
.seo-content ul, .seo-article ul, .seo-content ol, .seo-article ol {
    margin: 16px 0 24px; padding-left: 28px;
}
.seo-content li, .seo-article li { margin-bottom: 10px; font-size: 16px; }
.seo-content a, .seo-article a { color: var(--primary); text-decoration: underline; }
.seo-content a:hover, .seo-article a:hover { color: var(--primary-dark); }
.seo-toc { background: var(--gray-50); }
.seo-toc ol li a { text-decoration: none; }
.seo-toc ol li a:hover { text-decoration: underline; }
.seo-table { border-collapse: collapse; width: 100%; font-size: 14px; margin: 20px 0; }
.seo-table th, .seo-table td {
    border: 1px solid var(--gray-200); padding: 12px 16px; text-align: left;
}
.seo-table th { background: var(--gray-50); font-weight: 600; color: var(--gray-800); }
.seo-table tr:nth-child(even) { background: var(--gray-50); }
.faq-answer { font-size: 15px; line-height: 1.7; }

/* Blog pages */
.blog-page { background: #fff; }

/* Homepage hero */
.home-hero {
    position: relative; overflow: hidden;
    padding: 3.25rem 0 3.75rem;
}
.home-hero__overlay {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 18% 22%, rgba(59,130,246,0.24) 0%, transparent 42%),
        radial-gradient(circle at 82% 72%, rgba(16,185,129,0.18) 0%, transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
}
.home-hero__grid {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
.home-hero__content { max-width: 40rem; }
.home-hero__badge {
    display: inline-block; margin-bottom: 1rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: #bfdbfe; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14); padding: 0.35rem 0.75rem; border-radius: 9999px;
}
.home-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.12;
    letter-spacing: -0.02em; margin: 0 0 1rem;
}
.home-hero__accent { display: block; color: #60a5fa; margin-top: 0.15rem; }
.home-hero__subtitle {
    font-size: 1.0625rem; line-height: 1.65; color: #cbd5e1;
    margin: 0 0 1.5rem; max-width: 34rem;
}
.home-hero__stats {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.home-hero__stat {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 0.85rem 1rem;
}
.home-hero__stat-value {
    display: block; font-size: 1.25rem; font-weight: 800; color: #93c5fd; line-height: 1.2;
}
.home-hero__stat-label {
    display: block; margin-top: 0.15rem; font-size: 0.75rem; color: #94a3b8; font-weight: 600;
}
.home-hero__actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.home-hero__actions .btn-primary,
.home-hero__actions .btn-secondary { text-decoration: none; }
.home-hero__whatsapp {
    font-size: 0.875rem; font-weight: 600; color: #86efac; text-decoration: none;
}
.home-hero__whatsapp:hover { color: #bbf7d0; }
.home-hero__topics-label {
    display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: #94a3b8; margin-bottom: 0.65rem;
}
.home-hero__pills { display: flex; flex-direction: column; gap: 0.5rem; }
.home-hero__pill {
    display: block; width: fit-content; max-width: 100%;
    font-size: 0.8125rem; font-weight: 600; color: #e2e8f0; text-decoration: none;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.45rem 0.85rem; border-radius: 9999px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.home-hero__pill:hover {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); color: #fff;
}
.home-hero__visual {
    position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center;
}
.home-hero__collage {
    position: relative; width: min(100%, 440px); height: 340px; margin: 0 auto;
}
.home-hero__photo {
    position: absolute; overflow: hidden; border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.06);
}
.home-hero__photo img {
    display: block; width: 100%; height: 100%; object-fit: cover;
}
.home-hero__photo--main {
    width: 74%; height: 58%; top: 6%; left: 6%; z-index: 3;
    transform: rotate(-2deg);
}
.home-hero__photo--secondary {
    width: 54%; height: 42%; top: 32%; right: 0; z-index: 2;
    transform: rotate(4deg);
}
.home-hero__photo--tertiary {
    width: 48%; height: 36%; bottom: 0; left: 16%; z-index: 1;
    transform: rotate(-5deg);
}
.home-hero__glow {
    position: absolute; width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(96,165,250,0.35) 0%, transparent 70%);
    bottom: 8%; right: 10%; filter: blur(8px); z-index: 0;
}
.home-hero__price-tag {
    position: absolute; top: 4%; right: 4%; z-index: 4;
    font-size: 0.8125rem; font-weight: 800; color: #111827;
    background: #fff; border-radius: 9999px; padding: 0.45rem 0.85rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.home-hero__breadcrumb { color: #94a3b8; }
.home-hero__breadcrumb a { color: #bfdbfe; text-decoration: none; }
.home-hero__breadcrumb a:hover { color: #fff; }

/* Contact page */
.contact-channels { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-channel {
    display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.15rem;
    border-radius: 14px; border: 1px solid var(--gray-200); background: #fff;
    text-decoration: none; color: inherit; transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-channel:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: #93c5fd; }
.contact-channel__icon { font-size: 1.35rem; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }
.contact-channel__title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.15rem; }
.contact-channel__desc { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 0.35rem; }
.contact-channel__value { font-size: 0.9375rem; font-weight: 600; color: var(--gray-800); }
.contact-channel__cta { display: inline-block; margin-top: 0.5rem; font-size: 0.8125rem; font-weight: 700; color: #2563eb; }
.contact-channel--green:hover { border-color: #86efac; }
.contact-channel--green .contact-channel__cta { color: #15803d; }
.contact-channel--amber:hover { border-color: #fcd34d; }
.contact-channel--amber .contact-channel__cta { color: #b45309; }
.contact-location-card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 1.35rem 1.5rem;
}
.contact-location-card__badge {
    display: inline-block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: #2563eb; background: #eff6ff; padding: 0.25rem 0.55rem;
    border-radius: 9999px; margin-bottom: 0.75rem;
}
.contact-map-wrap {
    border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); background: var(--gray-100);
}
.contact-map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }

/* Blog hub hero */
.blog-hub-hero {
    position: relative; overflow: hidden;
    padding: 3rem 0 3.5rem;
}
.blog-hub-hero__overlay {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(59,130,246,0.22) 0%, transparent 42%),
        radial-gradient(circle at 85% 70%, rgba(16,185,129,0.16) 0%, transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}
.blog-hub-hero__grid {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
.blog-hub-hero__content { max-width: 40rem; }
.blog-hub-hero__badge {
    display: inline-block; margin-bottom: 1rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: #bfdbfe; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14); padding: 0.35rem 0.75rem; border-radius: 9999px;
}
.blog-hub-hero__title {
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.1;
    letter-spacing: -0.02em; margin: 0 0 1rem;
}
.blog-hub-hero__accent { color: #60a5fa; }
.blog-hub-hero__subtitle {
    font-size: 1.0625rem; line-height: 1.65; color: #cbd5e1;
    margin: 0 0 1.5rem; max-width: 34rem;
}
.blog-hub-hero__stats {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.blog-hub-hero__stat {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 0.85rem 1rem;
}
.blog-hub-hero__stat-value {
    display: block; font-size: 1.25rem; font-weight: 800; color: #93c5fd; line-height: 1.2;
}
.blog-hub-hero__stat-label {
    display: block; margin-top: 0.15rem; font-size: 0.75rem; color: #94a3b8; font-weight: 600;
}
.blog-hub-hero__actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.blog-hub-hero__actions .btn-primary,
.blog-hub-hero__actions .btn-secondary { text-decoration: none; }
.blog-hub-hero__phone {
    font-size: 0.875rem; font-weight: 600; color: #cbd5e1; text-decoration: none;
}
.blog-hub-hero__phone:hover { color: #fff; }
.blog-hub-hero__topics-label {
    display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: #94a3b8; margin-bottom: 0.65rem;
}
.blog-hub-hero__pills { display: flex; flex-direction: column; gap: 0.5rem; }
.blog-hub-hero__pill {
    display: block; width: fit-content; max-width: 100%;
    font-size: 0.8125rem; font-weight: 600; color: #e2e8f0; text-decoration: none;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.45rem 0.85rem; border-radius: 9999px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.blog-hub-hero__pill:hover {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); color: #fff;
}
.blog-hub-hero__visual {
    position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center;
}
.blog-hub-hero__collage {
    position: relative; width: min(100%, 420px); height: 320px; margin: 0 auto;
}
.blog-hub-hero__photo {
    position: absolute; overflow: hidden; border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.06);
}
.blog-hub-hero__photo img {
    display: block; width: 100%; height: 100%; object-fit: cover;
}
.blog-hub-hero__photo--main {
    width: 72%; height: 58%; top: 8%; left: 8%; z-index: 3;
    transform: rotate(-2deg);
}
.blog-hub-hero__photo--secondary {
    width: 52%; height: 42%; top: 34%; right: 0; z-index: 2;
    transform: rotate(4deg);
}
.blog-hub-hero__photo--tertiary {
    width: 46%; height: 36%; bottom: 0; left: 18%; z-index: 1;
    transform: rotate(-5deg);
}
.blog-hub-hero__glow {
    position: absolute; width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(96,165,250,0.35) 0%, transparent 70%);
    bottom: 10%; right: 12%; filter: blur(8px); z-index: 0;
}

.blog-hero__cat {
    display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: #93c5fd; margin-bottom: 0.75rem;
}
.blog-hero__meta {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0.75rem;
    font-size: 0.875rem; color: #d1d5db;
}
.blog-layout {
    display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
.blog-main { min-width: 0; }
.blog-sidebar { min-width: 0; }
.blog-featured-image {
    border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.blog-featured-image img {
    display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
}
.blog-toc ol { list-style: decimal; padding-left: 1.25rem; }
.blog-toc ol li a { color: var(--primary); font-weight: 500; }
.blog-content { overflow: hidden; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-tag {
    font-size: 0.75rem; font-weight: 600; color: #374151; background: #f3f4f6;
    border: 1px solid #e5e7eb; padding: 0.25rem 0.65rem; border-radius: 9999px;
}
.blog-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.blog-grid--3 { grid-template-columns: 1fr; }
.blog-grid--featured { grid-template-columns: 1fr; }
.blog-card {
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
    border: 1px solid #f3f4f6; border-radius: 14px; overflow: hidden; background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.blog-card--featured { border-color: #dbeafe; }
.blog-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: #f3f4f6; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.blog-card__cat {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #2563eb;
}
.blog-card__title {
    font-size: 1.0625rem; font-weight: 700; color: #111827; line-height: 1.35; margin: 0;
}
.blog-card__excerpt {
    font-size: 0.875rem; color: #6b7280; line-height: 1.55; margin: 0; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__meta { font-size: 0.8125rem; color: #9ca3af; margin: 0; }
.blog-filter-chip {
    font-size: 0.8125rem; font-weight: 600; color: #374151; background: #fff;
    border: 1px solid #e5e7eb; padding: 0.35rem 0.85rem; border-radius: 9999px;
}
.blog-hub-cta a { text-decoration: none; }
.blog-sidebar-cta .btn-primary,
.blog-sidebar-cta .btn-whatsapp { text-decoration: none; }
@media (min-width: 768px) {
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .blog-grid--featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-hub-hero { padding: 4rem 0 4.5rem; }
    .blog-hub-hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .blog-hub-hero__pills { flex-direction: row; flex-wrap: wrap; }
    .home-hero { padding: 4.25rem 0 4.75rem; }
    .home-hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .home-hero__pills { flex-direction: row; flex-wrap: wrap; }
    .home-hero__accent { display: inline; margin-top: 0; }
}
@media (min-width: 1024px) {
    .blog-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 2.5rem; }
    .blog-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .blog-hub-hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
    .blog-hub-hero__collage { width: 420px; height: 360px; margin-left: auto; }
    .home-hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
    .home-hero__collage { width: 440px; height: 380px; margin-left: auto; }
}

/* Hide fleet daily rates when prices are disabled (fallback if cached JS) */
body.hide-fleet-prices .vehicle-card-zoomcar-price,
body.hide-fleet-prices .vehicle-card-zoomcar-price-unit,
body.hide-fleet-prices span.vehicle-card-zoomcar-price-label,
body.hide-fleet-prices .vehicle-hub-card__price,
body.hide-fleet-prices .vehicle-similar-card__price {
    display: none !important;
}
body.hide-fleet-prices .vehicle-card-zoomcar-rate-note {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    margin: 0;
}
body.hide-fleet-prices .vehicle-card-zoomcar-price-wrap:not(:has(.vehicle-card-zoomcar-rate-note))::after {
    content: 'Contact for rates';
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
}
body.hide-fleet-prices .vehicle-show-booking-price-value,
body.hide-fleet-prices .vehicle-show-booking-price-unit {
    display: none !important;
}
body.hide-fleet-prices .vehicle-show-booking-price:not(:has(.vehicle-show-booking-price-value))::after,
body.hide-fleet-prices .vehicle-show-booking-price:has(.vehicle-show-booking-price-value)::after {
    content: 'Contact for rates';
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}
