

/* ================================
   RESET
================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================================
   VARIABLES
================================ */
:root {
    --charcoal: #0f0f0f;
    --charcoal-light: #1a1a1a;
    --charcoal-mid: #222;
    --silver: #d9d9d9;
    --silver-soft: #bfbfbf;
    --white: #fff;
    --neon: #c6ff3e;
    --radius: 6px;
    --shadow: 0 2px 14px rgba(0,0,0,0.35);
    --font: 'Segoe UI', Arial, sans-serif;
}
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--charcoal);
    color: var(--silver);
    line-height: 1.65;
    font-size: 16px;
}

a { color: var(--neon); text-decoration: none; }
a:hover { opacity: 0.85; }

img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.section { padding: 72px 0; }
.section-alt { background: var(--charcoal-light); }

.text-center { text-align: center; }
.top-bar {
    background: var(--charcoal-mid);
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--silver-soft);
}
.top-bar a { color: var(--neon); }
header {
    background: var(--charcoal-light);
    border-bottom: 1px solid #222;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon);
}
.logo span { color: var(--white); }

nav ul {
    display: flex;
    gap: 28px;
}
nav ul li a {
    color: var(--silver);
    font-weight: 500;
}
nav ul li a:hover { color: var(--neon); }

/* Sticky Header */
header.sticky {
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--neon);
    border-radius: 2px;
}

/* Animation */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}
.hero {
    background: linear-gradient(
        rgba(15,15,15,0.75),
        rgba(15,15,15,0.85)
    ),
    url('../images/mountains.jpg') center/cover no-repeat;
    padding: 110px 0 90px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.15rem;
    color: var(--silver-soft);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}
.btn {
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--neon);
    color: var(--charcoal);
}
.btn-primary:hover { background: #b4ff2c; }

.btn-outline {
    border: 2px solid var(--neon);
    color: var(--neon);
}
.btn-outline:hover {
    background: var(--neon);
    color: var(--charcoal);
}

/* Neon Glow */
.btn-glow {
    background: var(--neon);
    color: var(--charcoal);
    box-shadow: 0 0 12px var(--neon), 0 0 24px var(--neon);
}
.btn-glow:hover {
    box-shadow: 0 0 18px var(--neon), 0 0 36px var(--neon);
    transform: translateY(-2px);
}
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.vehicle-card {
    background: var(--charcoal-light);
    border: 1px solid #222;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}
.vehicle-card:hover { transform: translateY(-4px); }

.vehicle-card img {
    height: 200px;
    object-fit: cover;
}

.vehicle-info { padding: 20px; }
.vehicle-info h3 {
    color: var(--white);
    margin-bottom: 6px;
}
.vehicle-info p {
    color: var(--silver-soft);
    font-size: 0.9rem;
}

/* REMOVE PRICES */
.vehicle-price,
.detail-price {
    display: none !important;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}

.detail-gallery img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.detail-info {
    background: var(--charcoal-light);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid #222;
}

.detail-info h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.detail-specs li {
    margin-bottom: 8px;
    color: var(--silver-soft);
}
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new { background: var(--neon); color: var(--charcoal); }
.badge-sale { background: #ff4444; color: var(--white); }
.badge-awd { background: #3ea6ff; color: var(--charcoal); }
.filter-bar {
    background: var(--charcoal-light);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid #222;
    margin-bottom: 32px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.filter-grid select {
    padding: 12px;
    border-radius: var(--radius);
    background: var(--charcoal-mid);
    border: 1px solid #333;
    color: var(--white);
}

.search-box {
    width: 100%;
    padding: 14px;
    margin-bottom: 24px;
    border-radius: var(--radius);
    background: var(--charcoal-mid);
    border: 1px solid #333;
    color: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--silver-soft);
    margin-bottom: 14px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.contact-card {
    background: var(--charcoal-light);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid #222;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    color: var(--neon);
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: var(--charcoal-mid);
    border: 1px solid #333;
    color: var(--white);
}
.calc-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--charcoal-light);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid #222;
    box-shadow: var(--shadow);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.calc-result {
    margin-top: 28px;
    background: var(--charcoal-mid);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid #333;
}
footer {
    background: var(--charcoal-mid);
    padding: 64px 0 0;
    color: var(--silver-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--neon);
}
.mobile-action-bar { display: none; }

@media(max-width: 680px) {
    .mobile-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--charcoal-mid);
        display: flex;
        justify-content: space-around;
        padding: 14px 0;
        border-top: 1px solid #222;
        z-index: 999;
    }
    .mobile-action-bar a {
        color: var(--neon);
        font-weight: 700;
        font-size: 1rem;
    }
}
@media(max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 680px) {
    .menu-toggle { display: flex; }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal-light);
        padding: 12px 5%;
        border-top: 1px solid #222;
    }
    nav.open { display: block; }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid, .about-grid, .detail-layout {
        grid-template-columns: 1fr;
    }
}
/* FORCE HIDE ALL PRICES SITEWIDE */
.vehicle-price,
.detail-price,
.price,
.price-block,
.vehicle-price-block,
.vehicle-info .price,
.vehicle-info .vehicle-price,
.detail-info .price,
.detail-info .vehicle-price,
.inventory-grid .price,
.inventory-grid .vehicle-price {
    display: none !important;
}
/* REMOVE ALL PRICES SITEWIDE */
.card-price,
.vehicle-price,
.detail-price,
.price,
.price-block,
.vehicle-price-block,
.card-body .card-price,
.card-body .price,
.card-body .vehicle-price,
.detail-info .price,
.detail-info .card-price {
    display: none !important;
}
/* ============================================
   REPLACE ALL PRICES WITH "CALL FOR PRICE"
   ============================================ */

/* Hide the actual price text */
.card-price,
.vehicle-price,
.detail-price,
.price,
.price-block,
.vehicle-price-block {
    font-size: 0; /* hides text but keeps the element */
}

/* Insert replacement text */
.card-price::after,
.vehicle-price::after,
.detail-price::after,
.price::after,
.price-block::after,
.vehicle-price-block::after {
    content: "Call for Price";
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon);
    display: inline-block;
}
/* ============================================
   FORCE REPLACE ALL PRICES WITH "CALL FOR PRICE"
   (INVENTORY + VEHICLE DETAIL PAGES)
   ============================================ */

/* Hide actual price text */
.card-price,
.detail-price,
.price,
.price-block,
.vehicle-price,
.vehicle-price-block,
.detail-info .price,
.detail-info .detail-price,
.detail-info .vehicle-price,
.detail-info .price-block {
    font-size: 0 !important;
}

/* Insert replacement text */
.card-price::after,
.detail-price::after,
.price::after,
.price-block::after,
.vehicle-price::after,
.vehicle-price-block::after,
.detail-info .price::after,
.detail-info .detail-price::after,
.detail-info .vehicle-price::after,
.detail-info .price-block::after {
    content: "Call for Price";
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon);
    display: inline-block;
}
/* ============================================
   VEHICLE DETAIL PAGE — FORCE "CALL FOR PRICE"
   ============================================ */

/* Hide the actual price text */
.vehicle-price-block .vehicle-price {
    font-size: 0 !important;
}

/* Insert replacement text */
.vehicle-price-block .vehicle-price::after {
    content: "Call for Price";
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon);
    display: inline-block;
}
/* ============================================
   UNIVERSAL PRICE REMOVAL + CALL FOR PRICE
   (COVERS ALL VEHICLE DETAIL PAGES)
   ============================================ */

/* Hide any number-looking text inside price containers */
[class*="price"] {
    font-size: 0 !important;
}

/* Replace with Call for Price */
[class*="price"]::after {
    content: "Call for Price";
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon);
    display: inline-block;
}
/* ==========================================================
   UNIVERSAL PRICE REMOVAL + CALL FOR PRICE (ALL VEHICLES)
   ========================================================== */

/* 1. Hide any element whose class name contains "price" */
[class*="price"] {
    font-size: 0 !important;
    color: transparent !important;
}

/* 2. Replace it with "Call for Price" */
[class*="price"]::after {
    content: "Call for Price";
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon);
    display: inline-block;
}

/* 3. Hide raw price text inside headings or paragraphs */
h1:contains("$"),
h2:contains("$"),
h3:contains("$"),
h4:contains("$"),
p:contains("$"),
span:contains("$"),
div:contains("$") {
    font-size: 0 !important;
}

/* 4. Replace raw price text with Call for Price */
h1:contains("$")::after,
h2:contains("$")::after,
h3:contains("$")::after,
h4:contains("$")::after,
p:contains("$")::after,
span:contains("$")::after,
div:contains("$")::after {
    content: "Call for Price";
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon);
}



