/* Fleet section (blacknewfleetint-new) — extracted from inline <style> 2026-08-06.
   Shared by 43 landing pages; berlin/frankfurt add their own small overrides. */
.category-card {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.3rem;
}

.category-subtitle {
    color: #6b5d4a;
    font-size: 0.9rem;
}

.fleet-section {
    padding: 55px 0;
    background: #fff;
}

.fleet-section .section-title {
    text-align: center;
}

.fleet-section .section-subtitle {
    text-align: center;
    width: 100%;
    display: block;
        padding-bottom: 25px;
}

.card-content {
    cursor: default;
}

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    background: #f7f7f7;
    border-radius: 8px;
}

.fleet-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.fleet-tab span {
    font-size: 1.6rem;
    font-weight: 500;
    color: black;
}

.fleet-tab small {
    color: #666;
    font-size: 0.9rem;
}

.fleet-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.fleet-tab.active::after {
    width: 100%;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.fleet-grid.active {
    display: grid;
    opacity: 1;
}

@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

.vehicle-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 280px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-image:hover {
    opacity: 0.95;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

.capacity-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.capacity-item img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.eco-badge {
    background: #E8F5E9;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eco-badge img {
    height: 20px;
}

.card-content {
    padding: 19px;
}

.card-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-header:hover {
    opacity: 0.95;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.card-header p {
    background-color: #6b5d4a;
    padding: 5px 10px 5px 10px;
    max-width: max-content;
    border-radius: 5px;
    color: white;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 15px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 21px;
}

.feature-tag {
    padding: 8px 16px;
    background: #F8F9FA;
    border-radius: 30px;
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 500;
}

.card-buttons {
    display: flex;
    gap: 12px;
}

.book-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #1A1A1A;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.book-btn:hover {
    background: #000;
}

.details-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.details-btn:hover {
    background: #1A1A1A;
    color: #fff;
}

.book-btn svg, .details-btn svg {
    transition: transform 0.3s ease;
}

.book-btn:hover svg, .details-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .card-buttons {
        flex-direction: row;
        display: flex;
    }
    
    .book-btn, .details-btn {
        flex: 1;
    }
}
