@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Light theme palette (matches reference) */
    --bg-white: #ffffff;
    --bg-light: #f7f7f7;
    --bg-section: #fafafa;
    --bg-card: #ffffff;
    --text-dark: #222222;
    --text-body: #555555;
    --text-muted-light: #888888;
    --border-light-color: #e8e8e8;
    --border-card: #efefef;

    /* Dark elements (footer, services, hero, navbar) */
    --pure-black: #000000;
    --primary-dark: #0a0a0a;
    --secondary-dark: #111111;
    --card-dark: #1a1a1a;
    --elevated-dark: #1f1f1f;

    /* Brand accents */
    --accent-red: #E31E24;
    --accent-red-light: #ff2a30;
    --accent-red-dark: #b8161b;
    --accent-blue: #2A5BA0;
    --accent-blue-light: #3c6dc0;

    --text-white: #ffffff;
    --text-light: #d0d0d0;
    --text-muted: #888888;
    --text-dim: #555555;
    --border-color: #2a2a2a;
    --border-light: #333333;
    --silver: #c0c0c0;
    --silver-dark: #808080;
    --gradient-red: linear-gradient(135deg, #E31E24 0%, #ff2a30 100%);
    --gradient-blue: linear-gradient(135deg, #2A5BA0 0%, #3c6dc0 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --shadow-red: 0 10px 40px rgba(227,30,36,0.3);
    --shadow-dark: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-light: 0 10px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Global scale-down (~13% smaller) so layout isn't oversized at 100% zoom.
   Scales all rem-based sizing across the site. */
html {
    font-size: 87.5%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 { color: var(--text-dark); }
p { color: var(--text-body); }

/* Prevent any image/section from forcing horizontal scroll on mobile */
img { max-width: 100%; }
section, .container, .row { max-width: 100%; }
/* AOS animated elements must never create horizontal overflow */
[data-aos] { max-width: 100%; }

a { text-decoration: none; transition: all 0.3s; }

/* Override Bootstrap text colors for dark theme readability */
.text-muted { color: #b0b0b0 !important; }
.text-dim { color: #888888 !important; }
p { color: var(--text-light); }
.text-white { color: var(--text-white) !important; }
small { color: #a0a0a0; }

/* Default form inputs - dark text on light background */
input.form-control, textarea.form-control, select.form-select {
    color: #1a1a1a;
    caret-color: var(--accent-red);
}
.form-control::placeholder, .form-select::placeholder {
    color: #888888;
    opacity: 1;
    font-weight: 400;
}
.form-control::-webkit-input-placeholder { color: #888888; }
.form-control::-moz-placeholder { color: #888888; opacity: 1; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animated background grid - disabled for light theme */
.bg-grid { display: none; }
.bg-grid-was {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(227,30,36,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227,30,36,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    animation: gridMove 30s linear infinite;
}
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* GOOGLE TRANSLATE - Hide default UI but keep functional */
body { top: 0 !important; position: static !important; }
/* Hide ALL Google Translate UI chrome (banner, balloon, tooltip, spinner) */
.goog-te-banner-frame,
.skiptranslate,
iframe.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pop,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe,
.jfk-bubble.gtx-bubble {
    display: none !important;
    visibility: hidden !important;
}
/* Keep widget rendered, hide visually but allow Google to init */
#google_translate_element {
    position: fixed !important;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* Kill the hover highlight box that breaks text appearance */
.goog-tooltip,
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
/* Force translated <font> wrappers to inherit ALL styling so text never glitches */
font {
    background: transparent !important;
    box-shadow: none !important;
    vertical-align: inherit !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}
.lang-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}
.lang-btn i.fa-globe { font-size: 0.85rem; }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s;
    overflow: hidden;
    z-index: 1050;
}
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown .lang-option {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 16px !important;
    color: #333 !important;
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}
.lang-dropdown .lang-option:last-child { border-bottom: none; }
.lang-dropdown .lang-option:hover {
    background: #f5f5f5;
    color: #E31E24 !important;
    padding-left: 20px !important;
}
.lang-dropdown .flag-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* TOP CONTACT BAR */
.top-bar {
    background: linear-gradient(135deg, #E31E24 0%, #c9171d 100%);
    color: #fff;
    font-size: 0.7rem;
    padding: 10px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1031;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 8px;
}
.top-bar-left, .top-bar-right { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.top-bar a, .top-bar span {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 2px 4px;
}
.top-bar a:hover { opacity: 0.85; }
.top-bar i { font-size: 0.7rem; opacity: 0.9; }

/* Navbar with top bar adjustment */
body { padding-top: 0; }

/* Nav callout (Call us 24/7) */
.nav-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(227,30,36,0.08);
    border: 1px solid rgba(227,30,36,0.25);
    border-radius: 8px;
    transition: all 0.3s;
    margin-left: 10px;
    text-decoration: none;
}
.nav-callout:hover {
    background: rgba(227,30,36,0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(227,30,36,0.2);
}
.nav-callout-icon {
    width: 32px; height: 32px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.72rem;
    box-shadow: 0 3px 10px rgba(227,30,36,0.3);
}
.nav-callout-text small {
    display: block;
    color: var(--text-muted);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.nav-callout-text strong {
    display: block;
    color: var(--accent-red);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* Navbar */
.navbar-custom {
    top: 40px !important;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(227,30,36,0.2);
    padding: 4px 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-custom.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 2px 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.navbar-custom .navbar-brand {
    padding: 0;
    margin: 0 25px 0 0;
    line-height: 0;
}
.navbar-custom .navbar-brand img {
    height: 95px;
    width: auto;
    display: block;
    transition: height 0.3s;
    mix-blend-mode: lighten;
}
.navbar-custom.scrolled .navbar-brand img { height: 70px; }
.navbar-custom .navbar-brand:hover img { transform: scale(1.05); }
.navbar-custom .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 14px 18px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s;
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: all 0.3s;
    transform: translateX(-50%);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { width: 60%; }
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active { color: var(--accent-red) !important; }
.navbar-custom .btn-cta {
    background: var(--gradient-red);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(227,30,36,0.3);
}
.navbar-custom .btn-cta::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.5s;
}
.navbar-custom .btn-cta:hover::before { left: 100%; }
.navbar-custom .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227,30,36,0.5);
}

/* Buttons */
.btn-red {
    background: var(--gradient-red);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(227,30,36,0.3);
}
.btn-red::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;
}
.btn-red:hover::before { left: 100%; }
.btn-red:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227,30,36,0.5);
}
.btn-outline-red {
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    padding: 12px 33px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
}
.btn-outline-red::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background: var(--gradient-red);
    transition: width 0.3s;
    z-index: -1;
}
.btn-outline-red:hover::before { width: 100%; }
.btn-outline-red:hover {
    color: #fff;
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227,30,36,0.4);
}

/* HERO SECTION with video-like effect */
.hero-section {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pure-black);
    padding-top: 150px;
    padding-bottom: 45px;
}
.hero-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
    animation: zoomBg 20s ease-in-out infinite alternate;
}
@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%),
        radial-gradient(ellipse at top right, rgba(227,30,36,0.15) 0%, transparent 50%);
    z-index: 2;
}

/* Animated particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-red);
    opacity: 0.4;
    animation: float 15s infinite linear;
    z-index: 2;
}
@keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero-section .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(227,30,36,0.15);
    border: 1px solid rgba(227,30,36,0.3);
    border-radius: 30px;
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(227,30,36,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(227,30,36,0); }
}
.hero-section h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
    color: #ffffff !important;
}
.hero-section p { color: var(--text-light) !important; }
.hero-section h1 span {
    /* White text with the red glow/flash kept behind it */
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    display: inline-block;
    animation: glowText 2s ease-in-out infinite alternate;
}
@keyframes glowText {
    from { filter: drop-shadow(0 0 12px rgba(227,30,36,0.6)); }
    to { filter: drop-shadow(0 0 32px rgba(227,30,36,0.95)); }
}
.hero-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
    font-weight: 300;
}
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }

/* Hero Category Tabs (Static Visual Badges) */
.hero-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-cat-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: default;
    font-family: 'Poppins', sans-serif;
}
.hero-cat-tab:hover {
    background: rgba(227,30,36,0.15);
    border-color: rgba(227,30,36,0.5);
    color: #ffffff;
}

/* Hero WhatsApp CTA */
.hero-whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.hero-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-wa-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.5);
    color: #ffffff !important;
}
.hero-wa-btn i {
    font-size: 1.4rem;
}
.hero-wa-note {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-category-tabs { gap: 6px; }
    .hero-cat-tab { font-size: 0.62rem; padding: 7px 12px; letter-spacing: 0.8px; }
    .hero-wa-btn { padding: 12px 22px; font-size: 0.75rem; }
    .hero-whatsapp-cta { gap: 12px; }
}
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item { text-align: left; }
.hero-stat-item .num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}
.hero-stat-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 10;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
.scroll-indicator i { display: block; margin-top: 8px; font-size: 1rem; }

/* Section Styles */
.section-padding { padding: 60px 0; position: relative; }
.section-dark { background: var(--bg-light); }
.section-darker { background: var(--bg-section); }
.section-pure-black { background: var(--bg-white); }
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    color: var(--text-dark);
}
.section-title span {
    color: var(--accent-red);
    -webkit-text-fill-color: var(--accent-red);
}
.section-subtitle {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    margin-bottom: 50px;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-red);
    margin: 15px auto 25px;
    border-radius: 2px;
}

/* Car Cards - Premium */
.car-card {
    background: var(--card-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
}
.car-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(227,30,36,0) 0%, rgba(227,30,36,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}
.car-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-red);
}
.car-card:hover::before { opacity: 1; }
.car-card .card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #000;
}
.car-card .card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    pointer-events: none;
}
.car-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.car-card:hover .card-img-wrapper img { transform: scale(1.1); }
.car-card .badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-red);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(227,30,36,0.4);
    animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.car-card .badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: #ffd700;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    border: 1px solid rgba(255,215,0,0.3);
}
.car-card .card-body {
    padding: 25px;
    position: relative;
    z-index: 2;
}
.car-card .car-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-white);
    letter-spacing: 1px;
}
.car-card .car-year {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}
.car-card .car-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
}
.car-card .car-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.car-card .car-specs span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.car-card .car-specs i {
    color: var(--accent-red);
    font-size: 0.85rem;
}
.car-card .btn-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}
.car-card .btn-details:hover { color: #fff; gap: 14px; }

/* Swiper */
.featured-carousel { padding: 30px 50px; position: relative; }
.featured-carousel .swiper-button-next,
.featured-carousel .swiper-button-prev {
    color: var(--accent-red);
    background: rgba(227,30,36,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(227,30,36,0.3);
    transition: all 0.3s;
}
.featured-carousel .swiper-button-next::after,
.featured-carousel .swiper-button-prev::after { font-size: 1.1rem; font-weight: 700; }
.featured-carousel .swiper-button-next:hover,
.featured-carousel .swiper-button-prev:hover {
    background: var(--gradient-red);
    color: #fff;
    transform: scale(1.1);
}
.featured-carousel .swiper-pagination-bullet {
    background: var(--text-dim);
    opacity: 1;
    transition: all 0.3s;
}
.featured-carousel .swiper-pagination-bullet-active {
    background: var(--accent-red);
    width: 30px;
    border-radius: 5px;
}

/* Sell Form - High contrast white bg with dark text for readability */
.sell-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.sell-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 50%; height: 200%;
    background: radial-gradient(ellipse, rgba(227,30,36,0.04), transparent 70%);
    pointer-events: none;
}
.sell-section h2,
.sell-section h2.section-title,
.sell-section h3,
.sell-section h4,
.sell-section h5 {
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    text-shadow: none !important;
}
.sell-section h2 span,
.sell-section h2.section-title span,
.sell-section h3 span {
    color: var(--accent-red) !important;
    -webkit-text-fill-color: var(--accent-red) !important;
}
.sell-section h5 {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 10px;
    display: inline-block;
}
.sell-section h5 i.text-danger { color: var(--accent-red) !important; }
.sell-section p { color: #555555 !important; }
.sell-section .text-muted { color: #666666 !important; }
.sell-section .form-control,
.sell-section .form-select {
    background: #ffffff !important;
    border: 1.5px solid #d0d0d0 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    padding: 13px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 500;
}
.sell-section .form-control:focus,
.sell-section .form-select:focus {
    border-color: var(--accent-red) !important;
    box-shadow: 0 0 0 3px rgba(227,30,36,0.15) !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
}
.sell-section .form-control::placeholder {
    color: #888888 !important;
    -webkit-text-fill-color: #888888 !important;
    opacity: 1 !important;
    font-weight: 400;
}
.sell-section .form-select option {
    background: #ffffff !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
}
.sell-section label, .sell-section .form-label {
    color: #2a2a2a !important;
    font-weight: 600;
    font-size: 0.78rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Autofill override for sell section */
.sell-section .form-control:-webkit-autofill,
.sell-section .form-control:-webkit-autofill:hover,
.sell-section .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #1a1a1a !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    background: #ffffff !important;
}

/* Vehicle photo upload zone */
.photo-upload-zone {
    position: relative;
    border: 2px dashed #c8c8c8;
    border-radius: 10px;
    background: #fafafa;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.photo-upload-zone:hover,
.photo-upload-zone.dragover {
    border-color: var(--accent-red);
    background: rgba(227,30,36,0.04);
}
.photo-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.photo-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}
.photo-upload-label i {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 4px;
}
.photo-upload-title {
    font-weight: 600;
    color: #2a2a2a;
    font-size: 0.95rem;
}
.photo-upload-hint {
    font-size: 0.8rem;
    color: #888888;
}
.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.photo-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #e0e0e0;
    background: #f0f0f0;
}
.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(227,30,36,0.95);
    color: #fff;
    border: none;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.photo-preview-remove:hover { background: #b8161b; }

/* How It Works */
.step-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--card-dark) 0%, var(--elevated-dark) 100%);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.step-card:hover { transform: translateY(-8px); border-color: var(--accent-red); }
.step-card:hover::before { transform: scaleX(1); }
.step-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(227,30,36,0.3);
    transition: all 0.4s;
}
.step-card:hover .step-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(227,30,36,0.5);
}
.step-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(227,30,36,0.3);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
.step-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(227,30,36,0.15);
    border: 1px solid rgba(227,30,36,0.3);
    color: var(--accent-red);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 33px;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}
.step-card h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1.3rem;
    color: #ffffff !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.step-card p {
    color: #c5c5c5 !important;
    font-size: 0.92rem;
    line-height: 1.75;
}
.step-card:hover h4 {
    color: #ffffff !important;
}

/* Trust Badges */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--card-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.trust-badge:hover {
    border-color: var(--accent-red);
    transform: translateY(-3px);
    background: var(--elevated-dark);
}
.trust-badge i {
    font-size: 1.8rem;
    color: var(--accent-red);
    width: 40px;
    text-align: center;
}
.trust-badge span {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
    position: relative;
    padding: 0 70px;
}
.testimonials-swiper {
    overflow: hidden;
    padding: 20px 10px 70px;
}
.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}
.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.testimonials-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    justify-content: center;
    z-index: 5;
    width: auto;
}
.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(227,30,36,0.3);
    opacity: 1;
    transition: all 0.3s;
    margin: 0 4px !important;
}
.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--accent-red);
    width: 30px;
    border-radius: 5px;
}

/* Slider Arrow Buttons - prominent, outside cards */
.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-red);
    color: #ffffff;
    border: 3px solid #ffffff;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 20;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(227,30,36,0.45), 0 0 0 1px rgba(227,30,36,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-nav-btn:hover {
    background: #ffffff;
    color: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 15px 35px rgba(227,30,36,0.55);
}
.testimonial-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}
.testimonial-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }

@media (max-width: 991px) {
    .testimonials-slider-wrapper { padding: 0 50px; }
    .testimonial-nav-btn { width: 46px; height: 46px; font-size: 1rem; }
}
@media (max-width: 768px) {
    .testimonials-slider-wrapper { padding: 0; }
    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
        top: auto;
        bottom: 0;
        transform: none;
    }
    .testimonial-nav-btn:hover { transform: scale(1.1); }
    .testimonial-prev { left: 30%; }
    .testimonial-next { right: 30%; }
    .testimonials-pagination { display: none !important; }
    .testimonials-swiper { padding-bottom: 80px; }
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid var(--border-card);
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    width: 100%;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -40px;
    right: 20px;
    font-size: 10rem;
    color: var(--accent-red);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.testimonial-card .quote-icon {
    font-size: 1.6rem;
    color: var(--accent-red);
    margin-bottom: 18px;
}
.testimonial-card p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}
.testimonial-card .customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light-color);
}
.testimonial-card .customer-name { color: var(--text-dark); }
.testimonial-card .customer-car { color: var(--text-muted-light); }
.testimonial-card .customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(227,30,36,0.3);
}
.testimonial-card .customer-name {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}
.testimonial-card .customer-car {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* Spotlight */
.spotlight-section {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.9), rgba(10,10,10,0.95)),
        radial-gradient(ellipse at center, rgba(227,30,36,0.1) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

/* Stat Card */
.stat-box {
    background: var(--card-dark);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.stat-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s;
    z-index: 0;
}
.stat-box:hover { transform: translateY(-5px); }
.stat-box:hover::before { transform: scaleY(0.05); transform-origin: top; }
.stat-box > * { position: relative; z-index: 1; }
.stat-box i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 15px;
    transition: transform 0.4s;
}
.stat-box:hover i { transform: rotateY(360deg); }
.stat-box .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}
.stat-box .stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    display: block;
}

/* Achievement Cards - Professional */
.achievements-section {
    position: relative;
    overflow: hidden;
}
.achievements-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(227,30,36,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.achievement-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.achievement-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}
.achievement-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227,30,36,0.15) 0%, transparent 70%);
    transition: all 0.5s;
}
.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 50px rgba(227,30,36,0.2);
}
.achievement-card:hover::before { transform: scaleX(1); }
.achievement-card:hover::after {
    bottom: -30%;
    right: -30%;
    background: radial-gradient(circle, rgba(227,30,36,0.25) 0%, transparent 70%);
}
.achievement-card > * { position: relative; z-index: 1; }
.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(227,30,36,0.15) 0%, rgba(227,30,36,0.05) 100%);
    border: 2px solid rgba(227,30,36,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-red);
    transition: all 0.5s;
    position: relative;
}
.achievement-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(227,30,36,0.2);
    border-radius: 50%;
    transition: all 0.5s;
}
.achievement-card:hover .achievement-icon {
    background: var(--gradient-red);
    color: #fff;
    border-color: transparent;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(227,30,36,0.4);
}
.achievement-card:hover .achievement-icon::before {
    inset: -12px;
    border-color: rgba(227,30,36,0.4);
}
.achievement-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    transition: all 0.4s;
}
.achievement-card:hover .achievement-number {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.achievement-number .suffix {
    font-size: 2rem;
    color: var(--accent-red);
    -webkit-text-fill-color: var(--accent-red);
}
.achievement-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    position: relative;
}
.achievement-label::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.4s;
}
.achievement-card:hover .achievement-label::after { width: 60px; }
.achievement-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 300;
}

/* About Logo Display */
.about-logo-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    text-align: center;
}
.about-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 200%;
    background: radial-gradient(ellipse, rgba(227,30,36,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.about-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-red);
}
.about-logo-wrapper img {
    max-width: 85%;
    height: auto;
    position: relative;
    z-index: 1;
    mix-blend-mode: lighten;
}
.about-logo-decoration {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
}
.about-logo-decoration::after {
    content: '';
    position: absolute;
    bottom: -calc(100% + 380px);
    left: -calc(100% + 380px);
    width: 40px; height: 40px;
    border-bottom: 2px solid var(--accent-red);
    border-left: 2px solid var(--accent-red);
}

/* Footer */
.footer {
    background: var(--pure-black);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}
.footer h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-white);
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gradient-red);
}
.footer p, .footer li, .footer a { color: var(--text-muted); font-size: 0.9rem; }
.footer a:hover { color: var(--accent-red); padding-left: 5px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 12px; transition: all 0.3s; }
.footer ul li a { transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer ul li i { color: var(--accent-red); width: 18px; font-size: 0.75rem; }
.footer .social-links { display: flex; gap: 12px; margin-top: 20px; }
.footer .social-links a {
    width: 42px;
    height: 42px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    padding-left: 0 !important;
}
.footer .social-links a:hover {
    background: var(--gradient-red);
    color: #fff;
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227,30,36,0.4);
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Page Header */
.page-header {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.6)),
        url('../images/hero-bg.jpg') center/cover;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header h1 { color: #fff !important; }
.page-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(227,30,36,0.15) 0%, transparent 70%);
}
.page-header > * { position: relative; z-index: 2; }
.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.page-header h1 span {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
}
.page-header .breadcrumb-item, .page-header .breadcrumb-item a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.page-header .breadcrumb-item.active { color: var(--accent-red); }

/* Car Listings - Filter Sidebar */
.filter-sidebar {
    background: var(--card-dark);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 120px;
}
.filter-sidebar h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.filter-sidebar .form-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filter-sidebar .form-control,
.filter-sidebar .form-select {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-light);
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    padding: 10px 14px;
}
.filter-sidebar .form-control:focus,
.filter-sidebar .form-select:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(227,30,36,0.15);
    background: rgba(0,0,0,0.7);
    color: #fff;
}
.filter-sidebar .form-select option { background: var(--card-dark); }

/* Professional Gallery */
.gallery-wrapper {
    position: relative;
}
.gallery-main {
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-dark);
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.gallery-main .swiper-slide {
    background: #000;
}
.gallery-main .swiper-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.gallery-main:hover .gallery-nav { opacity: 1; }
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.95rem;
}
.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }
.gallery-nav:hover {
    background: var(--gradient-red);
    border-color: var(--accent-red);
    box-shadow: 0 5px 20px rgba(227,30,36,0.5);
    opacity: 1 !important;
}
.gallery-nav.swiper-button-disabled { opacity: 0.2; pointer-events: none; }
.gallery-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    border: 1px solid rgba(255,255,255,0.15);
}
.gallery-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}
.gallery-fullscreen:hover {
    background: var(--gradient-red);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(227,30,36,0.4);
}
.gallery-kbd-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}
.gallery-main:hover .gallery-kbd-hint { opacity: 1; }
.gallery-kbd-hint kbd {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 1px 6px;
    margin: 0 2px;
    font-size: 0.7rem;
    color: var(--accent-red);
    font-family: monospace;
}

/* Thumbnail Strip (clickable) */
.gallery-thumbs-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.thumb-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.3s;
    border: 2px solid transparent;
    background: var(--card-dark);
    position: relative;
}
.thumb-item img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.thumb-item:hover { opacity: 0.85; }
.thumb-item:hover img { transform: scale(1.05); }
.thumb-item.active {
    opacity: 1;
    border-color: var(--accent-red);
    box-shadow: 0 4px 20px rgba(227,30,36,0.4);
}
.thumb-item.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-red);
}

.gallery-empty {
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-dark);
    border: 1px solid var(--border-color);
}
.gallery-empty img { width: 100%; height: 520px; object-fit: cover; }

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.lightbox-close:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}
.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    z-index: 10;
    background: rgba(255,255,255,0.05);
    padding: 8px 18px;
    border-radius: 20px;
}
.lightbox-swiper {
    width: 90%;
    max-width: 1200px;
    height: 85vh;
}
.lightbox-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-nav:hover {
    background: var(--gradient-red);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .gallery-main .swiper-slide img { height: 320px; }
    .gallery-nav { width: 40px; height: 40px; opacity: 1; transform: translateY(-50%) translateX(0); }
    .gallery-prev { left: 10px; }
    .gallery-next { right: 10px; }
    .gallery-thumbs .swiper-slide img { height: 60px; }
    .gallery-kbd-hint { display: none; }
}
.car-detail-info {
    background: var(--card-dark);
    border-radius: 10px;
    padding: 35px;
    border: 1px solid var(--border-color);
}
.car-detail-info .detail-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}
.specs-table { width: 100%; }
.specs-table tr { border-bottom: 1px solid var(--border-color); }
.specs-table td {
    padding: 14px 0;
    font-size: 0.9rem;
}
.specs-table td:first-child {
    color: var(--text-muted);
    width: 45%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}
.specs-table td:last-child {
    color: var(--text-white);
    font-weight: 500;
    text-align: right;
}
.feature-tag {
    display: inline-block;
    background: rgba(227,30,36,0.1);
    color: var(--accent-red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin: 5px;
    border: 1px solid rgba(227,30,36,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.feature-tag:hover {
    background: var(--accent-red);
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Card */
.contact-card {
    background: var(--card-dark);
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.contact-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card i {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.4s;
}
.contact-card:hover i { transform: scale(1.2) rotateY(360deg); }
.contact-card h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-card p {
    color: #c5c5c5 !important;
    font-size: 0.85rem;
}

/* Forms - High contrast for readability */
.form-section .form-control,
.form-section .form-select {
    background: #ffffff !important;
    border: 1.5px solid #d0d0d0 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    padding: 13px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}
.form-section .form-control:focus,
.form-section .form-select:focus {
    border-color: var(--accent-red) !important;
    box-shadow: 0 0 0 3px rgba(227,30,36,0.15) !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
}
.form-section .form-control::placeholder {
    color: #888888 !important;
    -webkit-text-fill-color: #888888 !important;
    opacity: 1 !important;
}
.form-section .form-select option {
    background: #ffffff !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
}
.form-section label, .form-section .form-label {
    color: #2a2a2a !important;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-section h2, .form-section h5 { color: #1a1a1a !important; }
.form-section p, .form-section .text-muted { color: #555555 !important; }
.form-section .form-control:-webkit-autofill,
.form-section .form-control:-webkit-autofill:hover,
.form-section .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #1a1a1a !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}

/* Pagination */
.pagination .page-link {
    background: var(--card-dark);
    border-color: var(--border-color);
    color: var(--text-light);
    padding: 10px 16px;
    transition: all 0.3s;
}
.pagination .page-link:hover {
    background: var(--elevated-dark);
    color: var(--accent-red);
    border-color: var(--accent-red);
}
.pagination .page-item.active .page-link {
    background: var(--gradient-red);
    border-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(227,30,36,0.3);
}
.pagination .page-item.disabled .page-link {
    background: var(--card-dark);
    color: var(--text-dim);
}

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-dark);
}
.map-container iframe { width: 100%; height: 400px; border: none; }

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 100px;
    right: 25px;
    z-index: 9999;
    min-width: 320px;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--pure-black); }
::-webkit-scrollbar-thumb { background: var(--accent-red); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-red-light); }

html { scroll-behavior: smooth; }

/* ===== NEW SECTIONS FOR REDESIGNED HOMEPAGE ===== */

/* QUICK SEARCH BAR */
.quick-search-section {
    background: var(--bg-white);
    padding: 30px 0 40px;
    position: relative;
    z-index: 5;
    margin-top: -40px;
}

/* SELL YOUR CAR — SPLIT (text + graphic) */
.sell-split-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #2a0a0b 100%);
    padding: 60px 0;
    overflow: hidden;
}
.sell-split-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(227,30,36,0.22) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(227,30,36,0.08) 0%, transparent 45%);
    pointer-events: none;
}
.sell-split-container { position: relative; z-index: 2; }

.sell-split-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(227,30,36,0.15);
    border: 1px solid rgba(227,30,36,0.4);
    border-radius: 30px;
    color: var(--accent-red-light);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.sell-split-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    line-height: 1.1;
}
.sell-split-title span {
    color: var(--accent-red);
    -webkit-text-fill-color: var(--accent-red);
}
.sell-split-desc {
    color: #c5c5c5 !important;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
.sell-split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}
.sell-split-list li {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sell-split-list li i { color: var(--accent-red); font-size: 1rem; }
.sell-split-btn {
    font-size: 0.9rem !important;
    padding: 14px 34px !important;
}

/* Right graphic side */
.sell-split-graphic {
    position: relative;
    text-align: center;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sell-split-car {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 25px 30px rgba(0,0,0,0.55));
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sell-split-graphic:hover .sell-split-car { transform: translateX(8px) scale(1.02); }
.sell-split-discount {
    position: absolute;
    top: 0;
    right: 10px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 30px rgba(227,30,36,0.5);
    z-index: 3;
    border: 3px solid rgba(255,255,255,0.2);
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.sell-split-discount-top {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.sell-split-discount-big {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
}
.sell-split-discount-sub {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .sell-split-graphic { margin-top: 20px; }
    .sell-split-discount { width: 110px; height: 110px; }
    .sell-split-discount-big { font-size: 1.6rem; }
}
@media (max-width: 768px) {
    .sell-split-section { padding: 45px 0; }
    .sell-split-title { font-size: 1.9rem; }
    .sell-split-desc { font-size: 0.9rem; }
    .sell-split-discount { width: 90px; height: 90px; top: -10px; right: 0; }
    .sell-split-discount-big { font-size: 1.3rem; }
}
.quick-search-bar {
    background: var(--bg-white);
    border: 1px solid var(--border-light-color);
    border-radius: 8px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}
.quick-search-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: var(--gradient-red);
}
.quick-search-label {
    color: var(--text-dark);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 18px;
    border-right: 1px solid var(--border-light-color);
}
.quick-search-label i { color: var(--accent-red); }
.quick-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    flex: 1;
}
.quick-search-input {
    background: var(--bg-light);
    border: 1px solid var(--border-light-color);
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}
.quick-search-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
    background: #fff;
}
.quick-search-input option { background: #fff; color: var(--text-dark); }
.btn-search {
    background: var(--gradient-red);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(227,30,36,0.3);
}
.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227,30,36,0.5);
}

/* FEATURES WITH CARS LINEUP */
/* MODERN WHY CHOOSE US SECTION */
.why-choose-section {
    padding: 65px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}
.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227,30,36,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42,91,160,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.why-choose-section .container { position: relative; z-index: 1; }

.section-overline {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.section-overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
}

.modern-features-row { margin-top: 50px; }

.modern-feature-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 32px 26px 26px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-red);
    transition: width 0.5s ease;
}
.modern-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: rgba(227,30,36,0.2);
}
.modern-feature-card:hover::before {
    width: 100%;
}
.modern-feature-card.mfc-featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.modern-feature-card.mfc-featured::before {
    width: 100%;
}
.modern-feature-card.mfc-featured h4 {
    color: #ffffff;
}
.modern-feature-card.mfc-featured p {
    color: rgba(255,255,255,0.7);
}
.modern-feature-card.mfc-featured .mfc-number {
    color: rgba(255,255,255,0.08);
}
.modern-feature-card.mfc-featured .mfc-icon-wrap {
    background: var(--gradient-red);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(227,30,36,0.4);
}
.modern-feature-card.mfc-featured:hover {
    transform: translateY(-20px);
}

.mfc-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(227,30,36,0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}
.modern-feature-card:hover .mfc-number {
    color: rgba(227,30,36,0.12);
}

.mfc-icon-wrap {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(227,30,36,0.1) 0%, rgba(227,30,36,0.05) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}
.modern-feature-card:hover .mfc-icon-wrap {
    background: var(--gradient-red);
    color: #ffffff;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(227,30,36,0.35);
}

.modern-feature-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
.modern-feature-card p {
    color: #777777;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.mfc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: gap 0.3s;
}
.modern-feature-card.mfc-featured .mfc-link {
    color: var(--accent-red-light);
}
.modern-feature-card:hover .mfc-link {
    gap: 14px;
}
.mfc-link i {
    transition: transform 0.3s;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .modern-feature-card.mfc-featured { transform: none; }
    .modern-feature-card.mfc-featured:hover { transform: translateY(-12px); }
}
@media (max-width: 768px) {
    .why-choose-section { padding: 60px 0; }
    .modern-feature-card { padding: 35px 25px 25px; }
    .mfc-number { font-size: 3.5rem; }
    .mfc-icon-wrap { width: 65px; height: 65px; font-size: 1.5rem; margin-bottom: 20px; }
    .modern-feature-card h4 { font-size: 1.1rem; }
}

/* FEATURE BOXES (3-column) */
.feature-box {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.feature-box:hover, .feature-box.feature-active {
    border-color: var(--accent-red);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(227,30,36,0.1);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 22px;
    transition: all 0.4s;
}
.feature-box:hover .feature-icon, .feature-box.feature-active .feature-icon {
    background: var(--gradient-red);
    color: #fff;
    transform: rotateY(360deg);
    box-shadow: 0 8px 20px rgba(227,30,36,0.3);
}
.feature-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feature-box p {
    color: var(--text-muted-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* INVENTORY TABS */
.inventory-tabs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.inventory-tabs .tab-btn {
    background: transparent;
    border: 1px solid var(--border-light-color);
    color: var(--text-body);
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}
.inventory-tabs .tab-btn:hover {
    color: var(--accent-red);
    border-color: var(--accent-red);
}
.inventory-tabs .tab-btn.active {
    background: var(--gradient-red);
    color: #fff;
    border-color: var(--accent-red);
    box-shadow: 0 4px 15px rgba(227,30,36,0.25);
}

/* INVENTORY CARDS (new style) */
.inventory-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.inventory-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-red);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.inv-card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f5f5f5;
}
.inv-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}
.inventory-card:hover .inv-card-img img { transform: scale(1.08); }
.inv-card-price {
    position: absolute;
    bottom: -10px;
    left: 14px;
    background: var(--gradient-red);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(227,30,36,0.5);
    letter-spacing: 0.5px;
}
.inv-card-body {
    padding: 20px 16px 16px;
}
.inv-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inv-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    border-top: 1px solid var(--border-light-color);
    border-bottom: 1px solid var(--border-light-color);
}
.inv-card-specs li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed var(--border-light-color);
    font-size: 0.72rem;
}
.inv-card-specs li:last-child { border-bottom: none; }
.inv-card-specs li span { color: var(--text-muted-light); text-transform: uppercase; letter-spacing: 0.3px; font-size: 0.62rem; }
.inv-card-specs li strong { color: var(--text-dark); font-weight: 600; font-size: 0.72rem; }
.inv-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s;
}
.inv-card-link:hover { color: #fff; }
.inv-card-link:hover i { transform: translateX(5px); }
.inv-card-link i { transition: transform 0.3s; }

/* BUY/SELL SPLIT BANNER WITH CENTER CAR */
.buy-sell-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.buy-sell-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 400px;
    position: relative;
}
.buy-sell-half {
    padding: 70px 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.buy-half {
    background:
        linear-gradient(135deg, #E31E24 0%, #c11e24 100%);
    justify-content: flex-start;
    text-align: left;
}
.sell-half {
    background:
        linear-gradient(135deg, #2A5BA0 0%, #2654a0 100%);
    justify-content: flex-end;
    text-align: right;
}
/* Diagonal pattern overlay */
.buy-half::before, .sell-half::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.04) 75%, transparent 75%);
    background-size: 60px 60px;
    pointer-events: none;
}
.buy-sell-content {
    max-width: 380px;
    position: relative;
    z-index: 2;
}
.buy-sell-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    line-height: 1.15;
}
.buy-sell-content p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 28px;
    font-size: 0.95rem;
    font-weight: 400;
}
.btn-bs-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 40px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
.btn-bs-outline:hover {
    background: #fff;
    color: #222;
    transform: translateY(-2px);
}
.buy-half .btn-bs-outline:hover { color: #E31E24; }
.sell-half .btn-bs-outline:hover { color: #2A5BA0; }

/* Center Car Image - overlapping both halves */
.bs-center-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: auto;
    max-height: 380px;
    z-index: 10;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.35));
    pointer-events: none;
}

/* PREMIUM OFFERS - reference style */
/* OUR SERVICES V2 - reference style with car */
.services-section-v2 {
    position: relative;
    background: #0a0a0a;
    padding: 65px 0;
    overflow: hidden;
}
.services-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(227,30,36,0.08), transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(80,80,80,0.15), transparent 60%);
    pointer-events: none;
}
.services-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: blur(2px);
    pointer-events: none;
}
.services-v2-container { position: relative; z-index: 1; }

/* Left side - description + car */
.services-left-content {
    position: relative;
    padding-right: 30px;
}
.services-left-icon {
    color: var(--accent-red);
    font-size: 1.8rem;
    margin-bottom: 15px;
    transform: scaleX(-1);
}
.services-left-title {
    color: #fff !important;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.services-title-divider {
    width: 50px;
    height: 3px;
    background: var(--accent-red);
    margin-bottom: 25px;
    border-radius: 2px;
}
.services-left-desc {
    color: #a8a8a8 !important;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 25px;
}
.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #c0c0c0;
    font-size: 0.88rem;
}
.services-list li i {
    width: 22px;
    height: 22px;
    background: rgba(227,30,36,0.15);
    border: 1px solid rgba(227,30,36,0.3);
    color: var(--accent-red);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}
/* Right side - 6 cards in 2x3 grid */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.service-card-v2 {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 35px 25px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent-red);
    transition: width 0.4s;
}
.service-card-v2:hover {
    background: rgba(227,30,36,0.08);
    border-color: rgba(227,30,36,0.3);
    transform: translateY(-5px);
}
.service-card-v2:hover::before { width: 100%; }
.service-icon-v2 {
    color: var(--accent-red);
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1;
    transition: transform 0.4s;
}
.service-card-v2:hover .service-icon-v2 {
    transform: scale(1.1) rotate(-5deg);
}
.service-card-v2 h5 {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.service-card-v2 p {
    color: #d0d0d0 !important;
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}
.service-card-v2:hover h5,
.service-card-v2:hover p {
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    .services-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .services-section-v2 { padding: 60px 0; }
    .services-left-content { padding-right: 0; text-align: center; }
    .services-title-divider { margin-left: auto; margin-right: auto; }
    .services-list { display: inline-block; text-align: left; }
    .services-list li { justify-content: flex-start; max-width: 380px; margin: 0 auto 10px; }
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
        justify-content: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .service-card-v2 { text-align: center; }
    .service-card-v2 .service-icon-v2 { display: block; }
}
@media (max-width: 576px) {
    .services-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
    .service-card-v2 {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    .services-left-title { font-size: 1.8rem; }
}

/* OUR SERVICES (Dark) - old version, kept for compatibility */
.services-dark-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.95) 100%);
    position: relative;
}
.services-dark-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(227,30,36,0.08), transparent 60%);
    pointer-events: none;
}
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gradient-red);
    transition: height 0.4s;
}
.service-card:hover {
    background: rgba(227,30,36,0.05);
    border-color: var(--accent-red);
    transform: translateY(-5px);
}
.service-card:hover::before { height: 100%; }
.service-icon {
    width: 60px; height: 60px;
    background: rgba(227,30,36,0.15);
    color: var(--accent-red);
    border: 1px solid rgba(227,30,36,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: all 0.4s;
}
.service-card:hover .service-icon {
    background: var(--gradient-red);
    color: #fff;
    transform: rotateY(180deg);
}
.service-card h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* BRANDS STRIP */
.brands-strip {
    background: var(--bg-white);
    padding: 50px 0;
    border-top: 1px solid var(--border-light-color);
    border-bottom: 1px solid var(--border-light-color);
}
.brands-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}
.brand-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-right: 1px solid var(--border-light-color);
    color: var(--text-body);
    transition: all 0.3s;
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { color: var(--accent-red); transform: translateY(-3px); }
.brand-item i {
    font-size: 2.2rem;
    color: var(--accent-red);
}
.brand-item strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}
.brand-item small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* NEWSLETTER SECTION (above footer) */
.newsletter-section {
    background: linear-gradient(135deg, #E31E24 0%, #b8161b 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at top left, rgba(0,0,0,0.2), transparent 50%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.1), transparent 50%);
}
.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.newsletter-text h3 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.newsletter-text h3 span { color: rgba(255,255,255,0.9); }
.newsletter-text p { color: rgba(255,255,255,0.85); margin: 0; }
.newsletter-inline-form {
    display: flex;
    gap: 0;
    max-width: 550px;
    flex: 1;
    min-width: 280px;
}
.newsletter-inline-form input {
    flex: 1;
    background: rgba(255,255,255,0.95);
    border: none;
    color: #333 !important;
    -webkit-text-fill-color: #333 !important;
    padding: 14px 22px;
    border-radius: 30px 0 0 30px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}
.newsletter-inline-form input::placeholder { color: #888 !important; -webkit-text-fill-color: #888 !important; }
.newsletter-inline-form input:focus { outline: none; }
.newsletter-inline-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}
.newsletter-inline-form button:hover { background: #1a1a1a; }

@media (max-width: 768px) {
    .newsletter-wrapper { flex-direction: column; text-align: center; gap: 25px; }
    .newsletter-text h3 { font-size: 1.4rem; }
    .newsletter-inline-form { flex-direction: column; gap: 12px; }
    .newsletter-inline-form input, .newsletter-inline-form button { border-radius: 30px; width: 100%; }
}

/* Newsletter in footer */
.newsletter-box {
    background: linear-gradient(135deg, rgba(227,30,36,0.1) 0%, rgba(227,30,36,0.02) 100%);
    border: 1px solid rgba(227,30,36,0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}
.newsletter-box h6 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-red);
}
.newsletter-form button {
    background: var(--gradient-red);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
.newsletter-form button:hover { transform: translateY(-2px); }

/* New responsive overrides */
@media (max-width: 991px) {
    .top-bar { font-size: 0.72rem; padding: 6px 0; }
    .top-bar-left, .top-bar-right { gap: 15px; }
    .top-bar span { display: none; }
    .navbar-custom { top: 32px !important; }
    .buy-sell-split { grid-template-columns: 1fr; }
    .buy-half, .sell-half { padding: 50px 30px; justify-content: center; text-align: center; }
    .buy-sell-content { max-width: 100%; }
    .buy-sell-content h3 { font-size: 1.8rem; }
    .bs-center-car {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    .buy-sell-banner { min-height: auto; padding-bottom: 30px; }
    .quick-search-bar { flex-direction: column; align-items: stretch; }
    .quick-search-label { border-right: none; border-bottom: 1px solid var(--border-color); padding-right: 0; padding-bottom: 12px; }
    .quick-search-form { grid-template-columns: 1fr 1fr; }
    .brand-item { border-right: none; border-bottom: 1px solid var(--border-color); padding: 15px 0; justify-content: center; }
    .brand-item:last-child { border-bottom: none; }
}
@media (max-width: 576px) {
    .top-bar-left a:nth-child(2), .top-bar-right a:nth-child(2) { display: none; }
    .navbar-custom { top: 30px !important; }
    .quick-search-form { grid-template-columns: 1fr; }
    .btn-search { width: 100%; }
}

/* AOS overrides */
[data-aos] { will-change: transform, opacity; }

/* Loading spinner */
.page-loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--pure-black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(227,30,36,0.2);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Section title centering */
.section-title-wrapper { text-align: center; }
.section-title-wrapper .section-divider { margin-left: auto; margin-right: auto; }

/* Counter */
.counter { display: inline-block; }

/* Hover lift effect */
.hover-lift { transition: transform 0.3s; }
.hover-lift:hover { transform: translateY(-5px); }

/* Responsive */
@media (max-width: 991px) {
    .hero-section h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.2rem; }
    .sell-section { padding: 40px 25px; }
    .hero-stats { gap: 25px; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 85vh; padding-top: 130px; padding-bottom: 40px; }
    .hero-section h1 { font-size: 2.5rem; letter-spacing: 1px; }
    .section-title { font-size: 1.8rem; letter-spacing: 1px; }
    .section-padding { padding: 60px 0; }
    .car-card .card-img-wrapper { height: 200px; }
    .car-detail-gallery .main-image { height: 300px; }
    .page-header { padding: 120px 0 60px; }
    .page-header h1 { font-size: 2.2rem; }
    .hero-stat-item .num { font-size: 1.8rem; }
    .hero-stats { gap: 20px; padding-top: 25px; margin-top: 35px; }
    .featured-carousel { padding: 20px 10px; }
}

@media (max-width: 576px) {
    .hero-section { padding-top: 115px; }
    .hero-section h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .navbar-custom .navbar-brand img { height: 60px; }
    .step-icon { width: 70px; height: 70px; font-size: 1.5rem; }
    .stat-box .stat-number { font-size: 2rem; }
}

/* ============================================================
   DARK-CARD TEXT READABILITY — GLOBAL SAFETY NET
   Any heading inside a dark-background card must be light so it
   is never dark-on-dark / invisible. Covers all pages.
   ============================================================ */
.contact-card h1, .contact-card h2, .contact-card h3, .contact-card h4, .contact-card h5, .contact-card h6,
.stat-box h1, .stat-box h2, .stat-box h3, .stat-box h4, .stat-box h5, .stat-box h6,
.step-card h1, .step-card h2, .step-card h3, .step-card h4, .step-card h5, .step-card h6,
.achievement-card h1, .achievement-card h2, .achievement-card h3, .achievement-card h4, .achievement-card h5, .achievement-card h6,
.car-card h1, .car-card h2, .car-card h3, .car-card h4, .car-card h5, .car-card h6,
.car-detail-info h1, .car-detail-info h2, .car-detail-info h3, .car-detail-info h4, .car-detail-info h5, .car-detail-info h6,
.trust-badge h1, .trust-badge h2, .trust-badge h3, .trust-badge h4, .trust-badge h5, .trust-badge h6,
.service-card-v2 h1, .service-card-v2 h2, .service-card-v2 h3, .service-card-v2 h4, .service-card-v2 h5, .service-card-v2 h6,
.filter-sidebar h1, .filter-sidebar h2, .filter-sidebar h3, .filter-sidebar h4, .filter-sidebar h5, .filter-sidebar h6,
.spotlight-section h2, .spotlight-section h3, .spotlight-section h4,
.services-section-v2 h2, .services-section-v2 h3, .services-section-v2 h4, .services-section-v2 h5 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
/* Keep gradient/red accent spans inside those headings red */
.contact-card h5 span, .stat-box h5 span, .step-card h4 span,
.services-section-v2 h2 span, .spotlight-section h2 span {
    color: var(--accent-red) !important;
    -webkit-text-fill-color: var(--accent-red) !important;
}
