/* Arac Parkuru Modern Styles */

.fleet-section {
    padding: 30px 0 60px 0;
    background-color: #fafafa;
}

body {
    background-image: none !important;
    background-color: #fafafa !important;
}

#header {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 5px 0;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-separator {
    width: 60px;
    height: 4px;
    background-color: #feb900;
    margin: 0 auto;
    border-radius: 2px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.vehicle-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #feb900;
}

.vehicle-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f8f8;
}

.vehicle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-img-wrapper img {
    transform: scale(1.1);
}

.vehicle-body {
    padding: 20px;
    text-align: center;
}

.vehicle-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.vehicle-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.meta-item {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: #feb900;
}

.meta-value {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title-main {
        font-size: 1.6rem !important;
    }
}

/* Breadcrumbs Customization for Fleet */
.breadcrumbs.fleet-header {
    background: #f8f9fa !important;
    padding: 80px 0;
    min-height: auto;
}

.breadcrumbs.fleet-header h2 {
    color: #1a1a1a !important;
    font-size: 42px;
}

.breadcrumbs.fleet-header ol li {
    color: #666 !important;
}

.breadcrumbs.fleet-header ol li a {
    color: #feb900 !important;
}