/* Vehicles Page Specific Styles */
.vehicles-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/images/image-terrain1.webp') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vehicles-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.vehicles-header h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vehicles-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicles-category {
    margin-bottom: 6rem;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.vehicles-category:last-child {
    margin-bottom: 0;
}

.vehicles-category h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.vehicles-category h2 i {
    color: var(--primary-color);
}

.vehicles-category h2:after {
    display: none;
}

.vehicles-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vehicle-group {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.vehicle-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.vehicle-group h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vehicle-group h3 img {
    width: 30px;
    height: auto;
}

.vehicle-list {
    list-style: none;
}

.vehicle-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vehicle-list li img {
    width: 40px;
    height: auto;
}

.vehicle-list li:last-child {
    border-bottom: none;
}

.vehicle-images {
    width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.vehicle-images img {
    width: 100%;
    height: auto;
    display: block;
}

.electric h2 i {
    color: #3498db;
}

.thermal h2 i {
    color: #e74c3c;
}

@media (max-width: 1024px) {
    .vehicles-content {
        grid-template-columns: 1fr;
    }

    .vehicle-images {
        width: 100%;
        max-width: 500px;
        margin: 2rem auto 0;
        position: static;
    }
}

@media (max-width: 768px) {
    .vehicles-header h1 {
        font-size: 3rem;
    }

    .vehicles-section {
        padding: 4rem 1rem;
    }

    .vehicles-category {
        padding: 2rem;
    }

    .vehicles-category h2 {
        font-size: 2rem;
    }

    .vehicle-group h3 {
        font-size: 1.3rem;
    }

    .vehicle-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vehicles-header h1 {
        font-size: 2.5rem;
    }

    .vehicles-category {
        padding: 1.5rem;
    }

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