/* Fleet Gallery Section - New Modern Design */
.fleet-gallery-section {
    padding: 100px 0;
    background: #0f0f1e;
    position: relative;
    overflow: hidden;
}

.fleet-gallery-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
}

.fleet-gallery-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
}

.fleet-gallery-section .container {
    position: relative;
    z-index: 1;
}

.fleet-gallery-section .section-header-modern h2,
.fleet-gallery-section .section-header-modern p {
    color: var(--white);
}

.fleet-gallery-section .section-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

/* Fleet Showcase */
.fleet-showcase {
    margin-top: 60px;
}

.fleet-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.fleet-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.fleet-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.fleet-hero-image:hover img {
    transform: scale(1.05);
}

.fleet-hero-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}

.fleet-hero-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(245, 87, 108, 0.4);
}

.fleet-hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 16px;
}

.fleet-hero-info h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.fleet-hero-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.spec-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.spec-content {
    flex: 1;
}

.spec-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.spec-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.fleet-hero-actions {
    display: flex;
    gap: 16px;
}

.btn-fleet-call,
.btn-fleet-info {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-fleet-call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-fleet-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

.btn-fleet-info {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-fleet-info:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Fleet Thumbnails */
.fleet-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fleet-thumb {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.fleet-thumb:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.fleet-thumb.active {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.thumb-image {
    height: 160px;
    overflow: hidden;
}

.thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-thumb:hover .thumb-image img {
    transform: scale(1.1);
}

.thumb-info {
    padding: 16px;
}

.thumb-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.thumb-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Fleet Statistics Modern */
.fleet-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-8px);
}

.stat-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.stat-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    opacity: 0.2;
    transform: rotate(45deg);
}

.stat-icon-wrapper i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card h4 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Fleet Gallery */
@media (max-width: 1024px) {
    .fleet-hero {
        grid-template-columns: 1fr;
    }
    
    .fleet-hero-image {
        height: 400px;
    }
    
    .fleet-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-hero-info h3 {
        font-size: 32px;
    }
    
    .fleet-specs {
        grid-template-columns: 1fr;
    }
    
    .fleet-hero-actions {
        flex-direction: column;
    }
    
    .fleet-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .fleet-stats-modern {
        grid-template-columns: 1fr;
    }
}
