﻿/* ============================================
   BULLS AUTO — Elegant Dark Theme
   ============================================ */

:root {
    --red: #E63946;
    --red-dark: #C1303C;
    --bg: #0B0B0F;
    --bg-elevated: #121217;
    --bg-card: #17171C;
    --border: rgba(255,255,255,.07);
    --border-active: rgba(230, 57, 70, .45);
    --white: #F5F5F7;
    --gray: #9D9DA6;
    --gray-muted: #63636E;
    --font: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', monospace;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,.35);
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--gray);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: var(--white); }

.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.text-red { color: var(--red); }
.text-muted { color: var(--gray-muted); }
.text-center { text-align: center; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .87rem;
    font-weight: 600;
    letter-spacing: .2px;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.13); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-lg { padding: 14px 34px; font-size: .92rem; }
.btn-sm { padding: 7px 16px; font-size: .8rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ============================================
   NAVIGATION — Burger | Logo | Phone (sofauto style)
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.main-nav {
    background: rgba(11,11,15,.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background .4s ease, box-shadow .4s ease;
}
.site-header.scrolled .main-nav {
    background: rgba(11,11,15,.98);
    box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Burger button */
.burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
    flex-shrink: 0;
    width: 44px;
}
.burger:hover { opacity: .7; }
.burger-line { transition: all .3s ease; }

/* Center Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.logo img {
    height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
.site-header.scrolled .logo img { height: 38px; }

/* Right side: phone */
.nav-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .3px;
    white-space: nowrap;
    transition: color .3s;
    flex-shrink: 0;
}
.nav-tel:hover { color: var(--red); }
.nav-tel i { font-size: .75rem; }

/* ===== Overlay Menu ===== */
.overlay-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(11,11,15,.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.overlay-menu.open {
    opacity: 1;
    visibility: visible;
}

.overlay-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color .3s, transform .3s;
}
.overlay-close:hover {
    color: var(--red);
    transform: rotate(90deg);
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.overlay-nav a {
    color: var(--gray);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    transition: color .3s, letter-spacing .3s;
}
.overlay-nav a:hover,
.overlay-nav a.active {
    color: var(--white);
    letter-spacing: 4px;
}

.overlay-info {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.overlay-info a,
.overlay-info span {
    color: var(--gray-muted);
    font-size: .85rem;
    transition: color .3s;
}
.overlay-info a:hover { color: var(--red); }
.overlay-info i {
    color: var(--red);
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 50%, rgba(230,57,70,.05) 0%, transparent 60%);
}
.hero-bg {
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(165deg, transparent 30%, rgba(230,57,70,.03) 60%, rgba(230,57,70,.06) 100%);
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: 20%; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(230,57,70,.04) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}
.hero::after { display: none; }

.hero-content {
    position: relative;
    z-index: 1;
    padding: 130px 0 80px;
}
.hero-text { max-width: 640px; }
.hero-badge {
    display: inline-block;
    font-family: var(--mono);
    background: rgba(230,57,70,.06);
    border: 1px solid rgba(230,57,70,.18);
    color: var(--red);
    padding: 7px 18px;
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats-bar {
    display: flex; gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stats-bar .stat {}
.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--white) 60%, var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-family: var(--mono);
    font-size: .68rem;
    color: var(--gray-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   PAGE HERO (Inventory, About, etc.)
   ============================================ */
.page-hero {
    padding: 130px 0 56px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -.5px;
}
.page-hero p { font-size: 1rem; color: var(--gray-muted); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    font-family: var(--mono);
    color: var(--red);
    font-size: .68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -.3px;
}
.section-header p { color: var(--gray-muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }
.section-footer { text-align: center; margin-top: 48px; }

/* ============================================
   CAR CARDS — Sofauto-Style
   ============================================ */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.car-grid-4 { grid-template-columns: repeat(3, 1fr); }
.car-grid-3 { grid-template-columns: repeat(3, 1fr); }

.car-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.4,0,.2,1), border-color .4s ease, box-shadow .4s ease;
    color: inherit;
    text-decoration: none;
}
.car-card:hover {
    border-color: var(--border-active);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(230,57,70,.1), 0 4px 16px rgba(0,0,0,.3);
    color: inherit;
}

.car-card-image {
    position: relative; height: 260px;
    overflow: hidden; background: var(--bg-elevated);
}
.car-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.car-card:hover .car-card-image img { transform: scale(1.06); }
.car-card-placeholder {
    display: flex; align-items: center; justify-content: center;
    height: 100%; font-size: 2.2rem; color: var(--gray-muted);
    background: var(--bg-elevated);
}
.car-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--red); color: var(--white);
    padding: 4px 12px; border-radius: 4px;
    font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .6px;
}
.car-badge-sold {
    background: var(--gray-muted);
}

.car-card-body { padding: 18px 20px 22px; }
.car-card-make {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    color: var(--gray-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
}
.car-card-model {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.3;
}
.car-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--gray-muted);
    margin-bottom: 12px;
}
.meta-dot {
    display: inline-block;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--gray-muted);
}
.car-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.3px;
}

/* Old card specs (kept for backward compat) */
.car-card-title { margin-bottom: 12px; }
.car-card-title h3 { font-size: 1rem; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.car-price { font-size: 1.4rem; font-weight: 700; color: var(--red); letter-spacing: -.3px; }
.car-card-specs {
    display: flex; gap: 14px; padding: 10px 0; margin-bottom: 14px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.car-card-specs span { font-size: .8rem; color: var(--gray-muted); }
.car-card-specs i { color: var(--red); margin-right: 3px; }

/* ============================================
   FILTER BAR — Horizontal (Inventory)
   ============================================ */
.filter-bar-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.filter-bar { width: 100%; }
.filter-bar-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.filter-item { flex: 1; min-width: 130px; }
.filter-item label {
    display: block;
    color: var(--gray-muted);
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.filter-item select,
.filter-item input {
    width: 100%; padding: 9px 12px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 6px; color: var(--white);
    font-family: var(--font); font-size: .85rem;
    transition: border-color .2s;
}
.filter-item select:focus,
.filter-item input:focus { outline: none; border-color: var(--red); }
.filter-item select option { background: var(--bg-card); }
.filter-actions {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

/* Results */
.inventory-results-section {}
.results-header { margin-bottom: 22px; color: var(--gray-muted); }
.results-header strong { color: var(--white); }

.empty-state { text-align: center; padding: 56px 20px; color: var(--gray-muted); }
.empty-state i { font-size: 2.2rem; color: var(--gray-muted); margin-bottom: 12px; display: block; }
.empty-state h3 { color: var(--white); margin-bottom: 6px; }
.empty-state a { color: var(--red); }
.full-width { grid-column: 1 / -1; }

/* ============================================
   ABOUT PREVIEW SECTION (Home)
   ============================================ */
.about-preview-section { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.about-preview-content .section-tag { display: block; margin-bottom: 10px; }
.about-preview-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -.3px;
    line-height: 1.2;
}
.about-preview-content p { color: var(--gray); font-size: 1rem; margin-bottom: 16px; line-height: 1.75; }
.about-preview-content .btn { margin-top: 10px; }

.about-preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color .3s;
}
.about-stat-card:hover { border-color: var(--border-active); }
.about-stat-icon {
    width: 42px; height: 42px;
    background: rgba(230,57,70,.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--red);
    margin-bottom: 14px;
}
.about-stat-card h3 { color: var(--white); font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.about-stat-card p { color: var(--gray-muted); font-size: .83rem; line-height: 1.6; }

/* ============================================
   OFFERS CTA GRID (Home)
   ============================================ */
.see-offers-section { background: var(--bg); }
.offers-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.offers-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 36px;
    text-align: center;
    transition: border-color .3s, transform .3s;
}
.offers-cta-card:hover {
    border-color: var(--border-active);
    transform: translateY(-3px);
}
.offers-cta-icon {
    width: 56px; height: 56px;
    background: rgba(230,57,70,.07);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--red);
    margin: 0 auto 20px;
}
.offers-cta-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.offers-cta-card p {
    color: var(--gray-muted);
    font-size: .92rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ============================================
   CAR DETAIL PAGE
   ============================================ */
.car-detail-hero { padding: 94px 0 16px; background: var(--bg-elevated); }
.back-link { color: var(--gray-muted); font-size: .88rem; transition: color .2s; }
.back-link:hover { color: var(--red); }
.back-link i { margin-right: 5px; }

.car-detail-section {}
.car-detail-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: start; }

/* Gallery */
.car-detail-gallery { border-radius: var(--radius); overflow: hidden; }
.gallery-main { border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; }
.car-detail-img {
    width: 100%; height: 440px; object-fit: cover;
    border-radius: var(--radius);
    display: block;
}
.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.gallery-thumb {
    flex: 0 0 80px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .6;
    transition: .2s;
    background: none;
    padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { opacity: .85; }
.gallery-thumb.active { border-color: var(--red); opacity: 1; }

.car-detail-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 440px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--gray-muted); font-size: 3rem;
}
.car-detail-placeholder p { font-size: .9rem; margin-top: 8px; }

/* Info */
.car-detail-header { margin-bottom: 28px; }
.car-detail-make {
    display: block;
    font-size: .78rem;
    font-weight: 500;
    color: var(--gray-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.car-detail-header h1 {
    font-size: 2.2rem; font-weight: 700;
    color: var(--white); margin-bottom: 8px; letter-spacing: -.3px;
}
.car-detail-price { font-size: 2.2rem; font-weight: 700; color: var(--red); letter-spacing: -.3px; }

.car-specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.spec-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px; text-align: center;
    transition: border-color .2s;
}
.spec-item:hover { border-color: var(--border-active); }
.spec-item i { font-size: 1.1rem; color: var(--red); margin-bottom: 6px; display: block; }
.spec-label {
    display: block; font-family: var(--mono); font-size: .68rem;
    color: var(--gray-muted); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 3px;
}
.spec-value { display: block; color: var(--white); font-weight: 600; font-size: .92rem; }

.car-description { margin-bottom: 28px; }
.car-description h3 { color: var(--white); margin-bottom: 10px; font-weight: 600; }
.car-description p { color: var(--gray); line-height: 1.7; }
.car-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.related-section { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-section h2 { font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 28px; }

/* ============================================
   FEATURES (Home)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius);
    padding: 32px 26px;
    transition: border-left-color .2s;
}
.feature-card:hover { border-left-color: var(--red); }
.feature-icon {
    width: 46px; height: 46px; margin-bottom: 18px;
    background: rgba(230,57,70,.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--red);
}
.feature-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.feature-card p { color: var(--gray-muted); font-size: .88rem; line-height: 1.65; }

/* ============================================
   WHY US / CTA
   ============================================ */
.why-us-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section {
    padding: 88px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}
.cta-content { text-align: center; max-width: 540px; margin: 0 auto; }
.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700; color: var(--white);
    margin-bottom: 14px; letter-spacing: -.3px;
}
.cta-content p { color: var(--gray-muted); margin-bottom: 28px; font-size: 1rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.about-content .section-tag { display: block; margin-bottom: 10px; }
.about-content h2 { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: -.3px; }
.about-content p { color: var(--gray); margin-bottom: 14px; font-size: 1rem; line-height: 1.7; }
.about-image-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 360px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--gray-muted); font-size: 3rem;
}
.about-image-placeholder span { font-size: .9rem; margin-top: 10px; }

/* Values */
.values-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.value-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius); padding: 32px 26px;
    transition: border-left-color .2s;
}
.value-card:hover { border-left-color: var(--red); }
.value-number {
    font-family: var(--mono);
    font-size: 2rem; font-weight: 700;
    color: var(--red); opacity: .25;
    margin-bottom: 10px;
}
.value-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.value-card p { color: var(--gray-muted); font-size: .88rem; line-height: 1.65; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.team-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px 26px; text-align: center;
    transition: border-color .2s;
}
.team-card:hover { border-color: var(--border-active); }
.team-avatar {
    width: 64px; height: 64px; margin: 0 auto 16px;
    background: rgba(230,57,70,.06);
    border: 2px solid rgba(230,57,70,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--red);
}
.team-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 3px; font-weight: 600; }
.team-role {
    font-family: var(--mono);
    color: var(--red); font-size: .75rem; font-weight: 500;
    display: block; margin-bottom: 10px; letter-spacing: .5px;
}
.team-card p { color: var(--gray-muted); font-size: .88rem; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius); padding: 32px 26px;
    transition: border-left-color .2s;
}
.service-card:hover { border-left-color: var(--red); }
.service-icon {
    width: 44px; height: 44px;
    background: rgba(230,57,70,.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--red); margin-bottom: 16px;
}
.service-card h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 8px; font-weight: 600; }
.service-card p { color: var(--gray-muted); font-size: .88rem; margin-bottom: 14px; line-height: 1.65; }
.service-list { list-style: none; }
.service-list li { color: var(--gray); font-size: .83rem; padding: 4px 0; }
.service-list i { color: var(--red); margin-right: 7px; font-size: .75rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; }
.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.8rem; font-weight: 700;
    color: var(--white); margin-bottom: 24px; letter-spacing: -.3px;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; color: var(--gray-muted);
    font-family: var(--mono); font-size: .72rem;
    font-weight: 500; margin-bottom: 5px;
    text-transform: uppercase; letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 10px 14px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 6px; color: var(--white);
    font-family: var(--font); font-size: .88rem;
    transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-card); }

.alert { padding: 12px 18px; border-radius: 6px; margin-bottom: 22px; font-size: .88rem; display: flex; align-items: center; }
.alert i { margin-right: 7px; }
.alert-success { background: rgba(34,197,94,.05); border: 1px solid rgba(34,197,94,.18); color: #22c55e; }
.alert-error { background: rgba(239,68,68,.05); border: 1px solid rgba(239,68,68,.18); color: #ef4444; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--bg-card); border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius); padding: 20px;
    transition: border-left-color .2s;
}
.contact-card:hover { border-left-color: var(--red); }
.contact-card-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: rgba(230,57,70,.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: .95rem;
}
.contact-card h3 { color: var(--white); font-size: .92rem; margin-bottom: 3px; font-weight: 600; }
.contact-card p { color: var(--gray-muted); font-size: .83rem; line-height: 1.6; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { border-top: 1px solid var(--border); }
.footer-top { padding: 56px 0 40px; background: var(--bg-elevated); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-desc { color: var(--gray-muted); font-size: .9rem; margin-bottom: 18px; line-height: 1.65; }
.social-links { display: flex; gap: 8px; }
.social-links a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.03); border: 1px solid var(--border);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    color: var(--gray-muted); font-size: .85rem; transition: .2s;
}
.social-links a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-col h4 {
    font-family: var(--mono);
    color: var(--white); font-size: .72rem; font-weight: 600;
    margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--gray-muted); font-size: .88rem; }
.footer-col ul li a:hover { color: var(--red); }
.contact-info li { color: var(--gray-muted); font-size: .83rem; display: flex; gap: 8px; align-items: flex-start; }
.contact-info i { color: var(--red); margin-top: 3px; min-width: 14px; }

.footer-bottom {
    background: var(--bg); padding: 18px 0;
    text-align: center; border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--gray-muted); font-size: .8rem; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.14); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .car-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .car-detail-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-preview { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .offers-cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .car-grid-4,
    .car-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .filter-bar-row { flex-wrap: wrap; }
    .filter-item { min-width: calc(33% - 8px); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .nav-logo { padding: 0; }
    .nav-inner { justify-content: center; }
    .hero-stats-bar { flex-direction: column; gap: 18px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-bg { display: none; }
    .car-grid-4,
    .car-grid-3 { grid-template-columns: 1fr; }
    .car-grid { grid-template-columns: 1fr; }
    .car-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-item { min-width: calc(50% - 8px); }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-preview-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .car-detail-actions { flex-direction: column; }
    .car-specs-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats-bar { gap: 14px; }
    .filter-item { min-width: 100%; }
    .filter-actions { width: 100%; }
    .filter-actions .btn { flex: 1; justify-content: center; }
    .gallery-thumbs { gap: 6px; }
    .gallery-thumb { flex: 0 0 60px; height: 42px; }
    .car-detail-img { height: 280px; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.car-grid .reveal:nth-child(1) { transition-delay: 0s; }
.car-grid .reveal:nth-child(2) { transition-delay: .1s; }
.car-grid .reveal:nth-child(3) { transition-delay: .2s; }
.car-grid .reveal:nth-child(4) { transition-delay: .3s; }
.car-grid .reveal:nth-child(5) { transition-delay: .4s; }
.car-grid .reveal:nth-child(6) { transition-delay: .5s; }
.car-grid .reveal:nth-child(7) { transition-delay: .1s; }
.car-grid .reveal:nth-child(8) { transition-delay: .2s; }
.car-grid .reveal:nth-child(9) { transition-delay: .3s; }

/* Section headers animate too */
.section-header {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury Detail: subtle line accents */
.section-tag {
    display: inline-block;
    font-family: var(--mono);
    color: var(--red);
    font-size: .68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 18px; height: 1px;
    background: var(--red);
}

/* Luxury card shine effect on hover */
.car-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.03), transparent);
    z-index: 1;
    transition: left .6s ease;
    pointer-events: none;
}
.car-card { position: relative; }
.car-card:hover::before { left: 100%; }

/* More refined button styles */
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 2px 12px rgba(230,57,70,.25);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,57,70,.35);
}
