:root {
    --primary-gold: #FFD700;
    --accent-gold: #FFC700;
    --bright-yellow: #FFED00;
    --primary-silver: #c0c0c0;
    --dark-bg: #1a1a1a;
    --darker-bg: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light-gray: #999999;
    --card-bg: #252525;
    --border-color: #FFD700;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: var(--darker-bg);
    border-bottom: 3px solid var(--primary-gold);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    background-color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container a:hover {
    opacity: 0.8;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('../images/spray-texture.svg') repeat,
        linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.05) 2px, rgba(255, 215, 0, 0.05) 4px);
    background-size: 800px 600px, 100% 100%, 100% 100%;
    pointer-events: none;
    animation: sprayDrift 60s linear infinite;
}

@keyframes sprayDrift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 800px 600px, 0 0, 0 0; }
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInScale 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: url('../images/spray-splatter.svg') center no-repeat;
    background-size: contain;
    opacity: 0.4;
    animation: rotateSplatter 20s linear infinite;
    z-index: -1;
}

.hero-logo::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: url('../images/spray-splatter.svg') center no-repeat;
    background-size: contain;
    opacity: 0.4;
    transform: rotate(180deg);
    animation: rotateSplatter 25s linear infinite reverse;
    z-index: -1;
}

@keyframes rotateSplatter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-logo-image {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.5));
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--bright-yellow) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--darker-bg);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: var(--darker-bg);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 40px rgba(255, 215, 0, 0.6);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
    opacity: 0.3;
}

.container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
    opacity: 0.3;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 30px;
    background: url('../images/spray-underline.svg') center no-repeat;
    background-size: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 0;
    border: 2px solid var(--primary-gold);
    border-left: 5px solid var(--primary-gold);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 150px;
    height: 150px;
    background: url('../images/spray-corner.svg') top left no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 150px;
    height: 150px;
    background: url('../images/spray-corner.svg') bottom right no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: rotate(180deg);
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 0.7;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--bright-yellow);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background-color: var(--card-bg);
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-card::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: url('../images/spray-splatter.svg') center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: hue-rotate(0deg);
}

.vehicle-card:hover::after {
    opacity: 0.8;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    border-color: var(--bright-yellow);
}

.vehicle-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--border-color);
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--darker-bg);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.vehicle-info h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.vehicle-specs {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.vehicle-price {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.btn-details {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: var(--primary-gold);
    color: var(--darker-bg);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    background-color: var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 0;
    border: 2px solid var(--primary-gold);
    border-top: 5px solid var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    background: url('../images/spray-splatter.svg') center no-repeat;
    background-size: contain;
    opacity: 0.2;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-card:hover::before {
    opacity: 0.4;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.stat-label {
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 0;
    border: 2px solid var(--primary-gold);
    border-left: 5px solid var(--primary-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 0;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bright-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary-gold);
    color: var(--darker-bg);
    padding: 1.2rem 2.5rem;
    border: 3px solid var(--primary-gold);
    border-radius: 0;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-submit:hover {
    background: var(--darker-bg);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.contact-info {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 0;
    border: 2px solid var(--primary-gold);
    border-left: 5px solid var(--primary-gold);
}

.contact-info h2 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.2rem;
}

.info-text h3 {
    color: var(--text-white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--text-gray);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-gray);
    border: 1px solid var(--border-color);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    border-top: 3px solid var(--primary-gold);
    box-shadow: 0 -3px 15px rgba(255, 215, 0, 0.2);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--darker-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--darker-bg);
        padding: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo-image {
        height: 140px;
    }

    .section-title {
        font-size: 2rem;
    }

    nav {
        padding: 1rem;
    }

    .logo {
        height: 65px;
    }
}

/* Filter Controls */
.filter-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-controls select {
    padding: 0.8rem 1.2rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
}

.filter-controls select:focus {
    outline: none;
    border-color: var(--primary-gold);
}
