/* ===================================
   VR AUTO - Premium Automotive Dealership
   Dynamic Design with Poppins Typography
   =================================== */

/* ===================================
   VR AUTO - Premium Design System
   Complete CSS Variables
   =================================== */

:root {
    /* ===== COLORS ===== */
    /* Primary Brand */
    --color-primary: #1E40AF;
    --color-primary-light: #3B82F6;
    --color-primary-dark: #1E3A8A;
    --primary-color: #1E40AF;
    --primary-hover: #1E3A8A;

    /* Accent */
    --color-accent: #3B82F6;
    --accent-blue: #3B82F6;

    /* Backgrounds */
    --color-background: #FFFFFF;
    --color-surface: #F8FAFC;
    --color-surface-alt: #F1F5F9;
    --background-dark: #0F172A;
    --background-card: #FFFFFF;

    /* Text */
    --color-text: #0F172A;
    --color-text-secondary: #475569;
    --color-text-muted: #94A3B8;
    --text-main: #0F172A;
    --text-dark: #1E293B;
    --text-muted: #64748B;

    /* Borders */
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;

    /* Status Colors */
    --color-whatsapp: #25D366;
    --color-electric: #0EA5E9;
    --color-dark: #0F172A;

    /* ===== TYPOGRAPHY ===== */
    --font-family: 'Poppins', sans-serif;
    --font-family-display: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* ===== SPACING ===== */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* ===== SHADOWS ===== */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 4px 14px 0 rgba(30, 64, 175, 0.35);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);

    /* ===== TRANSITIONS ===== */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* ===== Z-INDEX ===== */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-float: 400;

    /* ===== GRADIENTS ===== */
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #7C3AED 100%);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ----- SPA Page Transitions ----- */
.page {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.page.active {
    display: block;
    opacity: 1;
    animation: pageFadeIn 0.5s ease-out forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

ul,
ol {
    list-style: none;
}

/* ----- Utilities ----- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-8);
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.section-title {
    font-family: var(--font-family-display);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-5xl);
    }
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -4px rgba(43, 79, 212, 0.35);
}

.btn-secondary {
    background: var(--color-background);
    color: var(--color-text);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(43, 79, 212, 0.04);
}

/* ----- Navbar ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.navbar-logo img {
    height: 48px;
    width: auto;
}

.logo-vr {
    color: var(--color-primary);
    font-weight: 700;
    font-style: italic;
    font-size: 2rem;
    font-family: var(--font-family-display);
}

.logo-auto {
    color: var(--color-text);
    font-weight: 700;
    font-size: 2rem;
    font-family: var(--font-family-display);
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: var(--spacing-10);
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.navbar-link {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--color-primary);
}

.navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.navbar-cta {
    display: none;
}

@media (min-width: 768px) {
    .navbar-cta {
        display: inline-flex;
    }
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: var(--spacing-2);
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.navbar-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-background);
    padding: var(--spacing-8);
    gap: var(--spacing-6);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-2xl);
}

/* ----- Page System ----- */
.page {
    display: none;
    padding-top: 80px;
}

.page.active {
    display: block;
}

.page-header {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
    padding: var(--spacing-20) 0 var(--spacing-16);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-hero);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-family-display);
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-4);
    position: relative;
}

.page-header p {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    position: relative;
}

@media (min-width: 768px) {
    .page-header {
        padding: var(--spacing-24) 0 var(--spacing-20);
    }

    .page-header h1 {
        font-size: var(--font-size-6xl);
    }
}

/* ----- Page Hero (Secondary Pages) ----- */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-24) 0;
    background: #0F172A;
    overflow: hidden;
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-hero-car {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    transform: scale(1.05);
    filter: brightness(0.8) contrast(1.1);
    animation: pageHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes pageHeroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.95) 100%),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.6s ease-out;
}

.page-hero-badge svg {
    color: var(--color-primary-light);
}

.page-hero-title {
    font-family: var(--font-family-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
    animation: slideUp 0.6s ease-out 0.1s backwards;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 3.2rem;
    }
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease-out 0.2s backwards;
}

@media (min-width: 768px) {
    .page-hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Variant overrides - Unified for centered layout */
.page-hero-sobre .page-hero-overlay,
.page-hero-contactos .page-hero-overlay {
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.95) 100%),
        linear-gradient(to bottom, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.8) 100%);
}

/* ----- Hero Section (Home) ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Start from top with padding for better control */
    align-items: center;
    text-align: center;
    padding-top: 140px;
    /* Clear fixed header */
    padding-bottom: 80px;
    background: #0F172A;
    overflow: hidden;
}

/* Hero Car Image */
.hero-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    transform: scale(1.05);
    filter: brightness(0.7) contrast(1.1);
    animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 60%, rgba(15, 23, 42, 0.98) 100%),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    /* Take available space */
    justify-content: center;
    /* Center content within the remaining space */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-5) var(--spacing-2) 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--spacing-6);
    /* Slightly reduced margin */
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-badge svg {
    color: var(--color-primary-light);
}

.hero-title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    /* Better base size */
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF !important;
    margin-bottom: var(--spacing-4);
    /* Reduced for multi-line balance */
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    display: inline-block;
    color: #2B4FD4;
    /* Vivid Logo Blue */
}

.gradient-text {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: #2B4FD4 !important;
    /* Solid Brand Blue */
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1440px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* --- Buttons --- */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    /* More square like StartCars */
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #1E40AF;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* --- Car Cards (StartCars Style) --- */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.car-card {
    background: var(--background-card);
    /* White */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
    /* Removed glass border */
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.car-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
}

.car-info {
    padding: 1.5rem;
    color: var(--text-dark);
    /* Dark text on white */
}

.car-price {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.car-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.car-details {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.car-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f8f9fa;
    color: #555;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-card-primary {
    background: var(--primary-color);
    color: #000;
    text-align: center;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-card-primary:hover {
    filter: brightness(0.9);
}

.btn-card-secondary {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
}

.btn-card-secondary:hover {
    background: #333;
}

/* Badges */
.vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    /* Less rounded */
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: transform 0.2s;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

/* =============================================
   HERO FULLWIDTH PREMIUM SECTION
   Design moderno, fullwidth com imagem de fundo
   ============================================= */

.hero-fullwidth {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #0a0f1a;
}

/* Background Image */
.hero-fw-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-fw-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.35;
    transform: scale(1.05);
    animation: heroZoomSlow 25s ease-in-out infinite alternate;
}

@keyframes heroZoomSlow {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-fw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 15, 26, 0.7) 0%,
            rgba(10, 15, 26, 0.4) 40%,
            rgba(10, 15, 26, 0.6) 70%,
            rgba(10, 15, 26, 0.95) 100%);
    z-index: 2;
}

.hero-fw-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    z-index: 3;
}

/* Decorative Elements */
.hero-fw-decor {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.decor-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.decor-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(30, 64, 175, 0.2);
    top: -150px;
    right: -100px;
    animation: glowFloat 8s ease-in-out infinite;
}

.decor-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
    bottom: 10%;
    left: -100px;
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

.decor-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 1px;
}

.decor-line-1 {
    width: 40%;
    top: 35%;
    left: -5%;
    transform: rotate(-5deg);
}

.decor-line-2 {
    width: 30%;
    bottom: 30%;
    right: -5%;
    transform: rotate(5deg);
}

/* Main Content Area */
.hero-fw-content {
    position: relative;
    z-index: 10;
    padding-top: 140px;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-fw-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.hero-fw-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.badge-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

.badge-accent {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.hero-fw-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.title-small {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.title-main {
    display: block;
}

.title-gradient {
    font-family: var(--font-family-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .title-gradient {
        font-size: 2.8rem;
    }

    .title-small {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .title-gradient {
        font-size: 5rem;
    }
}

/* Subtitle */
.hero-fw-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@media (max-width: 768px) {
    .hero-fw-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Search Bar */
.hero-fw-search {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.search-fw-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 8px;
    gap: 8px;
    transition: all 0.4s ease;
}

.search-fw-container:focus-within {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.search-fw-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
}

.search-fw-icon {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.search-fw-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    padding: 12px 0;
}

.search-fw-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.search-fw-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.search-fw-filters {
    display: none;
    align-items: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .search-fw-filters {
        display: flex;
    }
}

.filter-fw-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-fw-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.filter-fw-btn svg {
    opacity: 0.7;
}

.search-fw-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1E40AF 0%, #3b82f6 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-fw-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

@media (max-width: 640px) {
    .search-fw-container {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }

    .search-fw-input-wrapper {
        width: 100%;
    }

    .search-fw-divider {
        display: none;
    }

    .search-fw-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Search Tags */
.search-fw-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.tags-fw-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.tag-fw-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-fw-item:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #fff;
}

.tag-fw-item.active {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    color: #60a5fa;
}

.tag-fw-item svg {
    opacity: 0.8;
}

/* Stats Bar */
.hero-fw-stats {
    position: relative;
    z-index: 10;
    padding: 2rem 0 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.stats-fw-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

@media (max-width: 480px) {
    .stats-fw-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 24px;
    }

    .stat-fw-item {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .stats-fw-grid {
        flex-wrap: nowrap;
    }
}

.stat-fw-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-fw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 14px;
    color: #60a5fa;
}

.stat-fw-content {
    display: flex;
    flex-direction: column;
}

.stat-fw-number {
    font-family: var(--font-family-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.stat-fw-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-fw-divider {
    display: none;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .stat-fw-divider {
        display: block;
    }
}

/* Scroll Indicator */
.hero-fw-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.hero-fw-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

.scroll-fw-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-fw-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.scroll-fw-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide on mobile for cleaner look */
@media (max-width: 480px) {
    .hero-fw-scroll {
        display: none;
    }

    .stats-fw-grid {
        padding: 20px;
        gap: 1.5rem;
    }

    .stat-fw-icon {
        width: 40px;
        height: 40px;
    }

    .stat-fw-number {
        font-size: 1.4rem;
    }
}

/* --- Premium Hero Section (original - keeping for reference) --- */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.hero-premium-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-car-visual {
    position: relative;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-main-car {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    transform: perspective(1000px) rotateY(-5deg);
}

.car-shadow {
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
}

/* Content Styling */
.premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.badge-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.badge-separator {
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 12px;
}

.badge-highlight {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.premium-title {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.premium-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

/* Search Glass */
.premium-search-container {
    max-width: 680px;
}

.search-glass {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-glass:focus-within {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.search-icon {
    color: var(--text-muted);
    opacity: 0.6;
}

.search-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
}

.search-input-group input::placeholder {
    color: #94a3b8;
}

.search-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.search-submit:hover {
    background: #1d4ed8;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1.5rem;
    padding-left: 10px;
}

.tags-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.tags-list {
    display: flex;
    gap: 10px;
}

.premium-tag {
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s;
}

.premium-tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Stats Floating */
.hero-stats-floating {
    margin-top: 5rem;
}

.stats-glass-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px 50px;
}

.stat-glass-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.stat-desc {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-glass-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.08);
}

/* Animations */
@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-52%) translateX(-10px);
    }
}

.animate-reveal-down {
    animation: revealDown 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-reveal-up {
    opacity: 0;
    animation: revealUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes revealDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes revealUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .premium-title {
        font-size: 3.5rem;
    }

    .hero-car-visual {
        width: 50%;
        right: -5%;
    }
}

@media (max-width: 992px) {
    .hero-premium-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-car-visual {
        position: relative;
        width: 90%;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
        order: -1;
    }

    .hero-main-car {
        transform: scale(1.1);
    }

    .animate-float {
        animation: float-mobile 6s ease-in-out infinite;
    }

    @keyframes float-mobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .premium-title,
    .premium-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .premium-badge {
        margin: 0 auto 2rem;
    }

    .premium-search-container {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .premium-title {
        font-size: 2.8rem;
    }

    .stats-glass-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stat-glass-divider {
        display: none;
    }

    .search-glass {
        flex-direction: column;
        padding: 15px;
        border-radius: 25px;
    }

    .search-input-group {
        padding: 15px 10px;
    }

    .search-submit {
        width: 100%;
        justify-content: center;
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-4);
    width: 100%;
}

@media (min-width: 480px) {
    .hero-ctas {
        flex-direction: row;
        align-items: center;
    }
}

.hero-bg {
    display: none;
}

/* ----- Trust Blocks ----- */
.trust-blocks {
    padding: var(--spacing-20) 0;
    background: var(--color-surface);
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
}

@media (min-width: 480px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    text-align: left;
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
}

.trust-item.animate-in {
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card-hover), 0 0 0 3px rgba(43, 79, 212, 0.06);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(43, 79, 212, 0.1) 0%, rgba(43, 79, 212, 0.05) 100%);
    color: var(--color-primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-6);
}

.trust-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-3);
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ----- Featured Vehicles ----- */
.featured-vehicles {
    padding: var(--spacing-24) 0;
    background: var(--color-background);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-16);
}

@media (min-width: 640px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-cta {
    text-align: center;
}

/* Vehicle Card */
.vehicle-card {
    background: var(--color-background);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
}

.vehicle-card.animate-in {
    animation: fadeInUp 0.6s forwards;
}

.vehicle-card:hover {
    transform: translateY(-12px);
    border-color: rgba(43, 79, 212, 0.3);
    box-shadow: var(--shadow-card-hover), 0 0 0 3px rgba(43, 79, 212, 0.04);
}

.vehicle-image {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

.vehicle-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--color-text-muted);
}

.vehicle-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    z-index: 5;
    background: var(--color-background);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.vehicle-badge.badge-supercar {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    border-color: transparent;
}

.vehicle-badge.badge-electric {
    background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 100%);
    color: white;
    border-color: transparent;
}

.vehicle-content {
    padding: var(--spacing-6);
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--color-background);
}

.vehicle-brand {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-2);
}

.vehicle-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-4);
    line-height: 1.3;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-6);
    border-bottom: 1px solid var(--color-border);
}


.spec-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    border: none;
}

.spec-tag svg {
    color: var(--color-primary);
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.vehicle-badge.badge-verified {
    background: #10B981;
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.badge-verified svg {
    width: 12px;
    height: 12px;
}

.vehicle-badge.badge-premium {
    background: #0F172A;
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.2);
}



.vehicle-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-4);
}

.vehicle-price-split {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-monthly {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: var(--font-size-lg);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-monthly .price-label {
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.price-monthly small {
    font-size: 0.7em;
    opacity: 0.8;
}

.price-cash .price-value {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

.card-badges {
    position: absolute;
    top: var(--spacing-4);
    left: var(--spacing-4);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    align-items: flex-start;
    z-index: 2;
}

.badge-verified {
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    padding-left: 8px;
}


.vehicle-price-wrapper {
    display: flex;
    flex-direction: column;
}

.vehicle-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.vehicle-cta {
    display: flex;
    gap: var(--spacing-2);
}

.vehicle-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: 0.7rem 1.1rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.vehicle-btn-details {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.vehicle-btn-details:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.vehicle-btn-whatsapp {
    background: var(--color-whatsapp);
    color: white;
    padding: 0.7rem;
}

.vehicle-btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ----- Social Proof ----- */
.social-proof {
    padding: var(--spacing-24) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--color-background);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.review-card.animate-in {
    animation: fadeInUp 0.6s forwards;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.review-stars {
    font-size: 1.25rem;
    color: #F59E0B;
    margin-bottom: var(--spacing-4);
    letter-spacing: 0.1em;
}

.review-text {
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    color: var(--color-text);
}

.review-location {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ----- How It Works ----- */
.how-it-works {
    padding: var(--spacing-24) 0;
    background: var(--color-background);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
    align-items: center;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
}

.step-item {
    text-align: center;
    padding: var(--spacing-8);
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
}

.step-item.animate-in {
    animation: fadeInUp 0.6s forwards;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto var(--spacing-6);
    box-shadow: var(--shadow-primary);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-3);
}

.step-item p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        width: 120px;
        height: 3px;
        background: linear-gradient(90deg, var(--color-primary) 0%, rgba(43, 79, 212, 0.2) 100%);
        border-radius: 2px;
    }
}

/* ----- Final CTA ----- */
.final-cta {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, rgba(43, 79, 212, 0.03) 0%, var(--color-surface) 100%);
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(43, 79, 212, 0.05) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-family-display);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-4);
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: var(--font-size-5xl);
    }
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-10);
}

/* ----- Filters Section ----- */
.filters-section {
    padding: var(--spacing-10) 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.filters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
}

@media (min-width: 480px) {
    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .filters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .filters-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.filter-group label {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-select {
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    color: var(--color-text);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(43, 79, 212, 0.1);
}

.filter-select option {
    background: var(--color-background);
    color: var(--color-text);
}

.filter-clear {
    align-self: flex-end;
    margin-top: auto;
}

/* ----- Vehicles Listing ----- */
.vehicles-listing {
    padding: var(--spacing-16) 0;
    background: var(--color-background);
}

.vehicles-count {
    margin-bottom: var(--spacing-8);
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

.vehicles-count span {
    color: var(--color-primary);
    font-weight: 800;
}

/* ----- About Section ----- */
.about-content {
    padding: var(--spacing-20) 0;
    background: var(--color-background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-family: var(--font-family-display);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-6);
}

@media (min-width: 768px) {
    .about-text h2 {
        font-size: var(--font-size-4xl);
    }
}

.about-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-6);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.about-values {
    margin-top: var(--spacing-8);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    color: var(--color-text);
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.value-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
    border-radius: var(--radius-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    box-shadow: var(--shadow-lg);
}

.about-cta {
    text-align: center;
    margin-top: var(--spacing-16);
    padding: var(--spacing-12);
    background: linear-gradient(135deg, rgba(43, 79, 212, 0.04) 0%, var(--color-surface) 100%);
    border-radius: var(--radius-3xl);
    border: 1px solid var(--color-border);
}

.about-cta h3 {
    font-family: var(--font-family-display);
    font-size: var(--font-size-2xl);
    color: var(--color-text);
    margin-bottom: var(--spacing-3);
}

.about-cta p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-6);
}

/* ----- Contacts Section ----- */
.contacts-content {
    padding: var(--spacing-20) 0;
    background: var(--color-background);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
}

@media (min-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-card {
    padding: var(--spacing-8);
    background: var(--color-background);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.contact-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(43, 79, 212, 0.2);
}

.contact-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, var(--color-background) 100%);
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(43, 79, 212, 0.1) 0%, rgba(43, 79, 212, 0.05) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-4);
}

.contact-whatsapp .contact-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    color: var(--color-whatsapp);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-2);
}

.contact-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-4);
}

.contact-phone {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-card address {
    font-style: normal;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    padding: var(--spacing-10);
    background: var(--color-surface);
    border-radius: var(--radius-3xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-family: var(--font-family-display);
    font-size: var(--font-size-2xl);
    color: var(--color-text);
    margin-bottom: var(--spacing-2);
}

.contact-form-wrapper>p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-4);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    color: var(--color-text);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(43, 79, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ----- Modal ----- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--color-background);
    border-radius: var(--radius-3xl);
    overflow-y: auto;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-2xl);
}

.modal-close {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    width: 48px;
    height: 48px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.modal-body {
    padding: 0;
}

/* Vehicle Detail in Modal */
.vehicle-detail {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .vehicle-detail {
        grid-template-columns: 1fr 1fr;
    }
}

.vehicle-gallery {
    position: relative;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .gallery-main-image {
        min-height: 100%;
    }
}

.gallery-placeholder {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    color: var(--color-text-muted);
}

.modal-badge {
    position: absolute;
    top: var(--spacing-6);
    left: var(--spacing-6);
    background: var(--color-background);
    color: var(--color-primary);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.modal-badge.badge-supercar {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    border-color: transparent;
}

.modal-badge.badge-electric {
    background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 100%);
    color: white;
    border-color: transparent;
}

.vehicle-info {
    padding: var(--spacing-10);
}

.vehicle-info-header {
    margin-bottom: var(--spacing-8);
}

.vehicle-info-brand {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-2);
}

.vehicle-info-title {
    font-family: var(--font-family-display);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-4);
}

.vehicle-info-price {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-primary);
}

.vehicle-specs-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
    padding: var(--spacing-6);
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

@media (min-width: 480px) {
    .vehicle-specs-detail {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
}

.spec-item svg {
    color: var(--color-primary);
    flex-shrink: 0;

    /* Better spacing for mobile header */
    @media (max-width: 768px) {
        .navbar-whatsapp {
            display: none !important;
        }
    }
}

.spec-item>div {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-text);
}

.spec-highlight {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    padding: var(--spacing-4);
    border-radius: var(--radius-lg);
    grid-column: span 2;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

@media (min-width: 480px) {
    .spec-highlight {
        grid-column: span 3;
    }
}

.spec-highlight svg {
    color: var(--color-electric);
}

.vehicle-extras {
    margin-bottom: var(--spacing-8);
}

.vehicle-extras h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-4);
}

.extras-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3);
}

.extras-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.extras-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.vehicle-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
    padding: var(--spacing-6);
    background: linear-gradient(135deg, rgba(43, 79, 212, 0.04) 0%, var(--color-surface) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(43, 79, 212, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    font-weight: 500;
}

.trust-badge svg {
    color: var(--color-primary);
}

.vehicle-info-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

@media (min-width: 480px) {
    .vehicle-info-ctas {
        flex-direction: row;
    }
}

.vehicle-info-ctas .btn {
    flex: 1;
}


/* ----- Make it Better Upgrades (Startcars Inspiration) ----- */

/* Top Utility Bar */
.top-bar {
    display: none;
    /* Hidden on mobile */
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-xs);
    height: 36px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    /* Higher than navbar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: var(--spacing-6);
}

.top-bar-right a,
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.top-bar-right a:hover {
    color: white;
}

/* Responsive Navbar Adjustment */
@media (min-width: 992px) {
    .top-bar {
        display: block;
    }

    .navbar {
        top: 36px;
        /* Push navbar down */
    }
}

/* Adjust floating buttons when mobile fixed CTA is active */
@media (max-width: 768px) {

    .back-to-top {
        bottom: 90px !important;
    }

    .floating-whatsapp {
        display: none !important;
    }
}

/* Typography and card adjustments for mobile */
@media (max-width: 480px) {
    .vehicle-title {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 1.3rem;
    }

    .spec-tag {
        font-size: 0.75rem;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #0F172A;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-2);
    margin-top: var(--spacing-2);
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    transition: all 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: var(--color-primary-light);
}

/* ----- Footer ----- */
.footer {
    background: var(--color-dark);
    color: white;
    padding: var(--spacing-16) 0 var(--spacing-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-12);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-4);
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-vr {
    color: white;
    font-size: 1.75rem;
}

.footer-logo .logo-auto {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.75rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-6);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: var(--spacing-2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    padding-top: var(--spacing-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ----- Floating WhatsApp Button ----- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--color-whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    z-index: var(--z-float);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 32px;
    }
}

/* ----- Mobile Fixed CTA ----- */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    z-index: var(--z-float);
    padding: var(--spacing-3);
    gap: var(--spacing-3);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4);
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.mobile-cta-phone {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.mobile-cta-whatsapp {
    background: var(--color-whatsapp);
    color: white;
}

/* ===================================
   DYNAMIC ANIMATIONS & EFFECTS
   =================================== */

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Enhanced Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.97);
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(135deg, #4A6BEF, #7C3AED, #4A6BEF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Pulse Animation for CTAs */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(43, 79, 212, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(43, 79, 212, 0);
    }
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Shine Effect for Cards */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
}

.shine:hover::before {
    left: 150%;
}

/* Enhanced Card Hover */
.vehicle-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25),
        0 0 0 1px rgba(43, 79, 212, 0.1);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.12);
}

.vehicle-card:hover .vehicle-badge {
    animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePop {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Trust Item Hover Enhancement */
.trust-item {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: white;
}

.trust-icon {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Review Card Hover */
.review-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.review-card:hover .review-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(43, 79, 212, 0.4);
}

.review-avatar {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Step Number Hover */
.step-number {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-item:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 15px 35px -5px rgba(43, 79, 212, 0.5);
}

/* Contact Card Hover */
.contact-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.contact-card:hover .contact-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.contact-icon {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Navbar Link Hover Animation */
.navbar-link {
    position: relative;
}

.navbar-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-link:hover::before {
    width: 100%;
}

/* Form Input Focus Animation */
.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(43, 79, 212, 0.15);
}

/* WhatsApp Float Pulse */
.whatsapp-float {
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Stats Number Counter Animation */
.stat-number {
    display: inline-block;
    transition: transform 0.3s;
}

.stat-item:hover .stat-number {
    transform: scale(1.15);
}

/* Modal Open Animation */
.modal.active .modal-content {
    animation: modalSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Filter Select Hover */
.filter-select {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-select:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 4px 12px rgba(43, 79, 212, 0.1);
}

/* Page Transition */
.page {
    animation: pageIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg,
            var(--color-surface) 25%,
            var(--color-surface-alt) 50%,
            var(--color-surface) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Text Highlight Animation */
.text-highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(43, 79, 212, 0.2) 60%);
    transition: background 0.3s;
}

.text-highlight:hover {
    background: linear-gradient(180deg, transparent 60%, rgba(43, 79, 212, 0.35) 60%);
}

/* Responsive Animations - Reduce Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   PREMIUM LAYOUT ENHANCEMENTS
   VR AUTO 2025 Redesign
   =================================== */

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-lg);
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: var(--spacing-4);
}

/* Enhanced Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-logo img {
    height: 52px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

/* Premium Hero Section */
.hero {
    background: linear-gradient(135deg, #0A0F1C 0%, #0F172A 50%, #1E293B 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(90deg,
            rgba(10, 15, 28, 0.98) 0%,
            rgba(15, 23, 42, 0.9) 40%,
            rgba(15, 23, 42, 0.6) 70%,
            rgba(15, 23, 42, 0.3) 100%);
}

.hero-badge {
    background: rgba(30, 64, 175, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    color: #FBBF24;
}

.hero-title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #60A5FA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Search Box Enhancement */
.hero-search .search-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3);
    display: flex;
    gap: var(--spacing-3);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.hero-search .search-box:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding-left: var(--spacing-4);
}

.search-field svg {
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats Bar Enhancement */
.hero-stats {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.stat-number {
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Body Type Items */
.hero-body-types {
    display: flex;
    gap: var(--spacing-6);
    margin-top: var(--spacing-10);
}

.body-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.body-type-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: white;
    transform: translateY(-4px);
}

.body-type-item svg {
    stroke: currentColor;
}

/* Premium Trust Blocks */
.trust-blocks {
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
    border: none;
}

.trust-item {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.trust-item:hover .trust-icon svg {
    stroke: white;
}

/* Premium Vehicle Cards */
.vehicle-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.vehicle-card:hover::before {
    opacity: 1;
}

.vehicle-card:hover {
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(30, 64, 175, 0.1);
    transform: translateY(-8px);
}

.vehicle-image {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

/* Enhanced Badges */
.card-badges {
    position: absolute;
    top: var(--spacing-4);
    left: var(--spacing-4);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    z-index: 5;
}

.vehicle-badge {
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.vehicle-badge.badge-verified {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: white;
    border: none;
}

.vehicle-badge.badge-supercar {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
}

.vehicle-badge.badge-electric {
    background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 100%);
    color: white;
}

/* Vehicle Content */
.vehicle-content {
    padding: var(--spacing-6);
    position: relative;
    z-index: 2;
}

.vehicle-brand {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-2);
}

.vehicle-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: var(--spacing-4);
}

/* Premium Price Display */
.vehicle-price-split {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-monthly {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-monthly .price-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-monthly .price-value {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-monthly .price-value small {
    font-size: 0.7em;
    font-weight: 600;
}

.price-cash .price-value {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

/* CTA Button Enhancement */
.vehicle-btn-details {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.vehicle-btn-details:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

/* Reviews Section Enhancement */
.social-proof {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 100%);
}

.review-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-6);
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(30, 64, 175, 0.06);
    line-height: 1;
}

.review-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-4);
}

.review-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

/* Steps Section */
.step-number {
    width: 88px;
    height: 88px;
    background: var(--gradient-primary);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.3);
    font-size: 2.25rem;
}

.step-connector {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    height: 4px;
    border-radius: 2px;
}

/* Final CTA Enhancement */
.final-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .cta-content h2 {
    color: white;
}

.final-cta .cta-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Enhancement */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #0A0F1C 100%);
}

.footer h4 {
    color: var(--color-primary-light);
}

.footer-newsletter h4 {
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-4);
}

/* Page Hero Enhancement */
.page-hero {
    background: linear-gradient(135deg, #0A0F1C 0%, #0F172A 50%, #1E293B 100%);
}

.page-hero-overlay {
    background: linear-gradient(90deg,
            rgba(10, 15, 28, 0.98) 0%,
            rgba(15, 23, 42, 0.85) 40%,
            rgba(15, 23, 42, 0.5) 100%);
}

/* Filters Enhancement */
.filters-section {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.filter-select {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3) var(--spacing-4);
    font-size: 14px;
    transition: all 0.2s ease;
}

.filter-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    outline: none;
}

/* Contact Cards Enhancement */
.contact-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: var(--shadow-lg);
}

.contact-whatsapp {
    border-color: rgba(37, 211, 102, 0.2);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.03) 0%, var(--color-background) 100%);
}

.contact-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

/* Floating WhatsApp Enhancement */
.floating-whatsapp {
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modal Enhancement */
.modal-content {
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-border);
}

.modal-close {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Button Improvements */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(30, 64, 175, 0.05);
}

/* ===================================
   PREMIUM TRUST BLOCKS WITH IMAGES
   =================================== */

.trust-blocks {
    padding: var(--spacing-24) 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 100%);
    position: relative;
}

.trust-blocks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.trust-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
}

@media (min-width: 640px) {
    .trust-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item-premium {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-item-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary-light);
}

.trust-item-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.trust-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-item-premium:hover .trust-item-image img {
    transform: scale(1.08);
}

.trust-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
}

.trust-item-content {
    padding: var(--spacing-6);
    position: relative;
}

.trust-icon-badge {
    position: absolute;
    top: -24px;
    left: var(--spacing-6);
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
    border: 3px solid var(--color-background);
}

.trust-item-content h3 {
    font-family: var(--font-family-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--spacing-4);
    margin-bottom: var(--spacing-2);
}

.trust-item-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   IMPROVED ABOUT SECTION IMAGE
   =================================== */

.about-image-real {
    position: relative;
    width: 100%;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.about-image-badge {
    position: absolute;
    bottom: var(--spacing-6);
    left: var(--spacing-6);
    right: var(--spacing-6);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4) var(--spacing-5);
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-lg);
}

.badge-year {
    font-family: var(--font-family-display);
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ===================================
   ENHANCED SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: var(--spacing-6) auto 0;
}

.section-title {
    font-family: var(--font-family-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   ENHANCED VEHICLE CARDS
   =================================== */

.vehicle-card {
    position: relative;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    transform: scale(1.02);
}

.vehicle-card:hover::before {
    opacity: 0.08;
}

/* ===================================
   ENHANCED REVIEW CARDS
   =================================== */

.review-card {
    position: relative;
    border-radius: var(--radius-2xl);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    padding: var(--spacing-8);
    transition: all 0.3s ease;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-6);
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 64, 175, 0.2);
}

/* ===================================
   ENHANCED HOW IT WORKS SECTION
   =================================== */

.how-it-works {
    padding: var(--spacing-24) 0;
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-display);
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto var(--spacing-6);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px dashed rgba(30, 64, 175, 0.3);
    animation: rotateDashed 20s linear infinite;
}

@keyframes rotateDashed {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(30, 64, 175, 0.2) 100%);
    position: relative;
}

.step-connector::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ===================================
   ENHANCED FINAL CTA
   =================================== */

.final-cta {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: floatBg 15s ease-in-out infinite;
}

@keyframes floatBg {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-family-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-4);
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-8);
}

/* ===================================
   ENHANCED FOOTER
   =================================== */

.footer {
    background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-newsletter h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-4);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-4);
    font-size: 0.9rem;
}

/* ===================================
   MICRO-ANIMATIONS & POLISH
   =================================== */

/* Subtle shine effect on hover */
.btn-primary,
.trust-icon-badge,
.step-number {
    position: relative;
    overflow: hidden;
}

/* Loading skeleton for images */
.vehicle-image,
.trust-item-image,
.about-image-real {
    background: linear-gradient(90deg,
            var(--color-surface) 25%,
            var(--color-surface-alt) 50%,
            var(--color-surface) 75%);
    background-size: 200% 100%;
}

/* Images should be visible by default */
.vehicle-image img,
.trust-item-image img,
.about-image-real img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Image loading state handled by onload if needed */
.vehicle-image img.loading,
.trust-item-image img.loading,
.about-image-real img.loading {
    opacity: 0;
}

/* Smooth focus states */
input:focus,
textarea:focus,
select:focus,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ===================================
   HERO SEARCH BOX STYLING
   =================================== */

.hero-search {
    margin-bottom: var(--spacing-8);
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    padding: var(--spacing-3);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
    .search-box {
        flex-direction: row;
        gap: var(--spacing-4);
        padding: var(--spacing-4);
    }
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
}

.search-field svg {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.search-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-size: 1rem;
    color: white;
    min-width: 0;
}

.search-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   HERO BODY TYPE FILTERS
   =================================== */

.hero-body-types {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-3);
    margin-top: var(--spacing-4);
}

.body-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    min-width: 80px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.body-type-item svg {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.body-type-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.body-type-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.body-type-item:hover svg {
    color: var(--color-primary-light);
}

.body-type-item:hover span {
    color: white;
}

/* ===================================
   FINAL VISUAL POLISH
   =================================== */

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Selection styling */
::selection {
    background: var(--color-primary);
    color: white;
}

/* Premium glass effect for cards */
.vehicle-card,
.review-card,
.contact-card {
    backdrop-filter: blur(10px);
}

/* Enhanced gradient text */
.gradient-text {
    background: linear-gradient(135deg, #4A6BEF, #7C3AED, #4A6BEF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
}

/* Premium card hover glow */
.vehicle-card:hover,
.trust-item-premium:hover {
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(30, 64, 175, 0.1);
}

/* ===================================
   MODERN FILTERS SECTION
   =================================== */

.filters-section {
    padding: var(--spacing-8) 0;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 50;
}

@media (min-width: 992px) {
    /* No sticky offset needed */
}

/* Quick Filters Bar */
.quick-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-6);
    border-bottom: 1px solid var(--color-border-light);
}

.quick-filters-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-right: var(--spacing-2);
}

.quick-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
}

.quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

.quick-chip svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.quick-chip:hover {
    background: rgba(30, 64, 175, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.quick-chip:hover svg {
    transform: scale(1.1);
}

.quick-chip.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.quick-chip.active svg {
    color: white;
}

/* Filters Card */
.filters-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-sm);
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-4);
    border-bottom: 1px solid var(--color-border-light);
}

.filters-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-weight: 700;
    color: var(--color-text);
}

.filters-title svg {
    color: var(--color-primary);
}

.active-filters-count {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

#filters-count-number {
    font-weight: 800;
    margin-right: 4px;
}

/* Modern Filters Grid */
.filters-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
}

@media (min-width: 480px) {
    .filters-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .filters-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .filters-grid-modern {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Filter Group Modern */
.filter-group-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.filter-group-modern label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-group-modern label svg {
    color: var(--color-primary);
    opacity: 0.7;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.filter-select-modern {
    width: 100%;
    padding: 12px 40px 12px 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-select-modern:hover {
    border-color: var(--color-primary-light);
    background: var(--color-background);
}

.filter-select-modern:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
    background: var(--color-background);
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.select-wrapper:focus-within .select-arrow {
    color: var(--color-primary);
    transform: translateY(-50%) rotate(180deg);
}

/* Filter Actions */
.filter-actions {
    display: flex;
    align-items: flex-end;
}

.btn-clear-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-clear-filters svg {
    width: 14px;
    height: 14px;
}

.btn-clear-filters:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: #EF4444;
    color: #EF4444;
}

/* Vehicles Count Enhancement */
.vehicles-count {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-6);
    padding: var(--spacing-4) var(--spacing-5);
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.vehicles-count #count-number {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* Sort Dropdown (for future) */
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-left: auto;
}

.sort-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Mobile Filter Improvements */
@media (max-width: 767px) {
    .filters-section {
        padding: var(--spacing-4) 0;
    }

    .filters-card {
        padding: var(--spacing-4);
    }

    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-3);
    }

    .quick-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-filter-chips {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--spacing-2);
        -webkit-overflow-scrolling: touch;
    }

    .quick-chip {
        flex-shrink: 0;
    }
}

/* Fix for header overlap when navigating via anchors (now only navbar) */
#viaturas {
    scroll-margin-top: 100px;
}

@media (min-width: 992px) {
    #viaturas {
        scroll-margin-top: 140px;
    }
}

/* ===================================
   PREMIUM HERO ANIMATIONS - DYNAMIC UI/UX
   =================================== */

/* Aurora/Particle Background Animation */
.hero-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.hero-background {
    overflow: hidden;
}

/* Animated Aurora Orbs */
.gradient-sphere {
    animation: auroraFloat 15s ease-in-out infinite;
    opacity: 0.2;
}

.sphere-1 {
    animation: auroraFloat 12s ease-in-out infinite, auroraPulse 8s ease-in-out infinite;
}

.sphere-2 {
    animation: auroraFloat 18s ease-in-out infinite reverse, auroraPulse 10s ease-in-out infinite 2s;
}

/* New Animated Spheres */
.gradient-sphere.sphere-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: auroraFloat 20s ease-in-out infinite 3s, auroraPulse 12s ease-in-out infinite;
}

.gradient-sphere.sphere-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation: auroraFloat 16s ease-in-out infinite 5s, auroraPulse 9s ease-in-out infinite 1s;
}

@keyframes auroraFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -10px) scale(1.03);
    }
}

@keyframes auroraPulse {

    0%,
    100% {
        opacity: 0.15;
        filter: blur(120px);
    }

    50% {
        opacity: 0.25;
        filter: blur(100px);
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 10%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 26s;
}

.particle:nth-child(6) {
    left: 80%;
    top: 30%;
    animation-delay: 5s;
    animation-duration: 24s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 70%;
    animation-delay: 2.5s;
    animation-duration: 21s;
}

.particle:nth-child(8) {
    left: 40%;
    top: 90%;
    animation-delay: 4.5s;
    animation-duration: 23s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-300px) translateX(50px) scale(1.5);
        opacity: 0.2;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-600px) translateX(-30px) scale(0.5);
        opacity: 0;
    }
}

/* Grid Pattern Overlay */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridFade 3s ease-out forwards;
}

@keyframes gridFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Text Stagger Reveal Animations */
.animate-stagger {
    opacity: 0;
    transform: translateY(40px);
    animation: staggerReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-stagger.delay-1 {
    animation-delay: 0.1s;
}

.animate-stagger.delay-2 {
    animation-delay: 0.2s;
}

.animate-stagger.delay-3 {
    animation-delay: 0.3s;
}

.animate-stagger.delay-4 {
    animation-delay: 0.4s;
}

.animate-stagger.delay-5 {
    animation-delay: 0.5s;
}

@keyframes staggerReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Title Glow Effect */
.premium-title {
    position: relative;
}

.highlight-text {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Car Image Parallax & Hover */
.hero-car-visual {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main-car {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    animation: carEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center center;
}

@keyframes carEntrance {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-15deg) translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) translateX(0) scale(1);
    }
}

.hero-car-visual:hover .hero-main-car {
    transform: perspective(1000px) rotateY(-3deg) scale(1.02);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.18));
}

.car-shadow {
    transition: all 0.5s ease;
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {

    0%,
    100% {
        opacity: 0.15;
        transform: scaleX(1);
    }

    50% {
        opacity: 0.2;
        transform: scaleX(1.05);
    }
}

/* Search Box Glow Effect */
.search-glass {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.search-glass::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6, #8b5cf6, var(--primary-color));
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 4s ease-in-out infinite;
}

.search-glass:hover::before,
.search-glass:focus-within::before {
    opacity: 1;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Animated Stats Counter */
.stat-val {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-glass-item:hover .stat-val {
    transform: scale(1.1);
}

.stats-glass-grid {
    animation: statsSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes statsSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
    opacity: 0.6;
}

.scroll-indicator-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ===================================
   PAGE HERO PREMIUM ANIMATIONS
   =================================== */

/* Dynamic Gradient Mesh */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 40% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes meshMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.98);
    }
}

/* Enhanced Page Hero Image */
.page-hero-car {
    animation: pageHeroZoom 20s ease-in-out infinite alternate,
        heroImageReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroImageReveal {
    from {
        opacity: 0;
        transform: scale(1.2);
    }

    to {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

/* Badge Bounce Animation */
.page-hero-badge {
    animation: badgeBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
}

@keyframes badgeBounce {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Title Reveal */
.page-hero-title {
    animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle Fade */
.page-hero-subtitle {
    animation: subtitleFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes subtitleFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Decorative Elements */
.page-hero-decor {
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

.decor-circle {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    animation: decorFloat 15s ease-in-out infinite;
}

.decor-circle-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decor-circle-2 {
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    animation-delay: 3s;
}

@keyframes decorFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -15px) rotate(5deg);
    }

    66% {
        transform: translate(-15px, 10px) rotate(-3deg);
    }
}

/* Gradient Text Enhancement */
.page-hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradientShift 6s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes heroGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Page Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scrollIndicatorPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    animation: scrollArrowBounce 1.5s ease-in-out infinite;
}

@keyframes scrollIndicatorPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scrollArrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Enhanced Overlay with Gradient Animation */
.page-hero-overlay {
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.95;
    }
}

/* Premium Badge Glow */
.premium-badge {
    position: relative;
    animation: badgeEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes badgeEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-badge::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 100px;
    z-index: -1;
    opacity: 0;
    animation: badgeGlow 3s ease-in-out infinite 1s;
}

@keyframes badgeGlow {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Search Tags Entrance */
.search-tags {
    animation: tagsSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    opacity: 0;
    transform: translateY(15px);
}

@keyframes tagsSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-tag {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.premium-tag:hover::before {
    left: 100%;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .gradient-sphere {
        opacity: 0.1;
    }

    .hero-particles .particle {
        display: none;
    }

    .hero-particles .particle:nth-child(-n+4) {
        display: block;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .decor-circle {
        display: none;
    }
}

/* ===================================
   PREMIUM LAYOUT IMPROVEMENTS
   Complete Site Enhancement
   =================================== */

/* ------- Trust Blocks Premium ------- */
.trust-blocks {
    padding: var(--spacing-24) 0;
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
}

.trust-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
}

@media (min-width: 640px) {
    .trust-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item-premium {
    background: var(--color-background);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.trust-item-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(30, 64, 175, 0.1);
}

.trust-item-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.trust-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item-premium:hover .trust-item-image img {
    transform: scale(1.1);
}

.trust-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.5) 100%);
}

.trust-item-content {
    padding: var(--spacing-6);
    position: relative;
}

.trust-icon-badge {
    position: absolute;
    top: -28px;
    left: var(--spacing-6);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.trust-item-premium:hover .trust-icon-badge {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 36px rgba(30, 64, 175, 0.3);
}

.trust-item-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-2);
    margin-top: var(--spacing-4);
}

.trust-item-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ------- Reviews Premium ------- */
.social-proof {
    padding: var(--spacing-24) 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 50%, var(--color-background) 100%);
    position: relative;
}

.social-proof .section-header {
    margin-bottom: var(--spacing-12);
}

.review-card {
    background: var(--color-background);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(30, 64, 175, 0.06);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 64, 175, 0.15);
}

.review-stars {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-4);
    letter-spacing: 0.2em;
}

.review-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
    font-style: italic;
    position: relative;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
    transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
    box-shadow: 0 0 0 5px rgba(30, 64, 175, 0.2);
    transform: scale(1.05);
}

/* ------- How It Works Premium ------- */
.how-it-works {
    padding: var(--spacing-24) 0;
    background: var(--color-background);
    position: relative;
}

.steps-grid {
    position: relative;
}

/* Connecting line */
@media (min-width: 768px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(30, 64, 175, 0.2) 10%,
                rgba(30, 64, 175, 0.3) 50%,
                rgba(30, 64, 175, 0.2) 90%,
                transparent 100%);
        border-radius: 2px;
        z-index: 0;
    }
}

.step-item {
    position: relative;
    z-index: 1;
    background: var(--color-background);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto var(--spacing-6);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px dashed rgba(30, 64, 175, 0.3);
    animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 16px 50px rgba(30, 64, 175, 0.4);
}

.step-connector {
    display: none;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-3);
}

.step-item p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ------- Vehicle Cards Premium ------- */
.vehicle-card {
    background: var(--color-background);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 64, 175, 0.2);
}

.vehicle-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

.vehicle-btn-details {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.4rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.vehicle-btn-details::after {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.vehicle-btn-details:hover {
    padding-right: 2rem;
    background: var(--color-primary-dark);
    transform: scale(1.02);
}

.vehicle-btn-details:hover::after {
    right: 12px;
    opacity: 1;
}

.vehicle-price {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ------- Contact Form Premium ------- */
.contact-form-wrapper {
    padding: var(--spacing-12);
    background: var(--color-background);
    border-radius: var(--radius-3xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-group {
    position: relative;
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-2);
    display: block;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-4) var(--spacing-5);
    background: var(--color-surface);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    color: var(--color-text);
    font-size: var(--font-size-base);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--color-background);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1), 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .btn-primary {
    width: 100%;
    padding: var(--spacing-5);
    font-size: 1rem;
    justify-content: center;
    margin-top: var(--spacing-4);
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

/* Contact Cards Premium */
.contact-card {
    padding: var(--spacing-8);
    background: var(--color-background);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.4s ease;
}

.contact-card:hover::before {
    height: 100%;
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 64, 175, 0.2);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 64, 175, 0.08);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-5);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.contact-whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
}

.contact-whatsapp:hover .contact-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ------- Final CTA Premium ------- */
.final-cta {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(30, 64, 175, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-4);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-10);
}

.cta-content .btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    padding: var(--spacing-5) var(--spacing-10);
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.cta-content .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.5);
}

/* ------- About Section Premium ------- */
.about-content {
    padding: var(--spacing-24) 0;
}

.about-text h2 {
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-6);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-4) var(--spacing-5);
    background: var(--color-background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(8px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-image-real {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-real:hover img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: var(--spacing-6);
    left: var(--spacing-6);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: var(--spacing-4) var(--spacing-6);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.badge-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.badge-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

/* ------- Micro-Interactions ------- */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.navbar-link {
    position: relative;
}

.navbar-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-link:hover::before {
    width: 100%;
}

/* Link Hover Effects */
a {
    transition: color 0.2s ease;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg,
            var(--color-surface) 0%,
            var(--color-surface-alt) 50%,
            var(--color-surface) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ===================================
   NEW IMPROVEMENTS - LAYOUT & EXTRAS
   =================================== */

/* ----- Scroll Progress Bar ----- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.5);
}

@media (min-width: 992px) {
    .scroll-progress {
        top: 36px;
    }
}

/* ----- Back to Top Button ----- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1999;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 90px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* ----- Enhanced Review Cards ----- */
.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(30, 64, 175, 0.1);
}

.review-stars {
    font-size: 1.25rem;
    color: #FBBF24;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.review-avatar {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    border: 3px solid white;
}

.review-text {
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -8px;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ----- Footer Social Icons ----- */
.footer-social {
    display: flex;
    gap: var(--spacing-3);
    margin-top: var(--spacing-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(131, 58, 180, 0.4);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ----- Animated Counter ----- */
.counter-value {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease;
}

.stat-glass-item:hover .counter-value {
    transform: scale(1.15);
}

/* ----- Vehicle Card New Badges ----- */
.vehicle-badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.6);
    }
}

.vehicle-badge-available {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.available-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* ----- Monthly Price Display ----- */
.vehicle-monthly-price {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-1);
}

.vehicle-monthly-price span {
    font-weight: 700;
    color: var(--color-primary);
}

/* ----- Enhanced Section Transitions ----- */
.section-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Brands/Partners Section ----- */
.partners-section {
    padding: var(--spacing-12) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.partners-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
}

.partners-header h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-8);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4);
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.footer-logo img {
    filter: brightness(0) invert(1);
    height: 40px;
}

/* ----- Guarantee Banner ----- */
.guarantee-banner {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(30, 64, 175, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin: var(--spacing-8) 0;
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-1);
}

.guarantee-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

/* ----- Stats Counter Animation ----- */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-animated {
    animation: countUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ----- Enhanced Hover States ----- */
.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.vehicle-card:hover::before {
    opacity: 1;
}

/* ----- Premium Loading Animation ----- */
.loading-shimmer {
    position: relative;
    overflow: hidden;
}

.loading-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shimmerMove 1.5s infinite;
}

@keyframes shimmerMove {
    100% {
        left: 100%;
    }
}

/* ----- Tooltip Styles ----- */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 6px 12px;
    background: var(--color-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ----- Print Styles ----- */
@media print {

    .scroll-progress,
    .back-to-top,
    .floating-whatsapp,
    .mobile-cta,
    .navbar {
        display: none !important;
    }
}

/* Multi-Image Upload Styles */
.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.preview-item {
    position: relative;
    aspect-ratio: 16/9;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.preview-remove:hover {
    background: #dc2626;
}

/* =============================================
   VEHICLE CARDS (JS Generated)
   ============================================= */

.vehicle-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    /* Default visible */
}

/* Scroll Animation classes */
.section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vehicle-image {
    position: relative;
    height: 240px;
    background: #f1f5f9;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    background: #f8fafc;
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.vehicle-badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #1e293b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.badge-supercar {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.badge-electric {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-verified {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    display: flex;
    align-items: center;
}

.vehicle-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-brand {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.spec-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #475569;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-weight: 500;
}

.spec-tag svg {
    color: #64748b;
}

.vehicle-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.vehicle-price-split {
    display: flex;
    flex-direction: column;
}

.price-monthly {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-monthly .price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
}

.price-cash {
    margin-top: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
}

.vehicle-cta {
    display: flex;
}

.vehicle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.vehicle-btn-details {
    background: #0f172a;
    color: white;
}

.vehicle-btn-details:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}