.fleet-detail-hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

.fleet-detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.fleet-detail-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.fleet-series {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

.fleet-detail-hero .hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 1;
    transform: none;
    animation: none;
}

.hero-specs {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.hero-spec {
    text-align: center;
}

.hero-spec strong {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-serif);
}

.hero-spec span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.fleet-overview {
    padding: 120px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.overview-content .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.overview-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-image img {
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.fleet-gallery {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.fleet-specs {
    padding: 120px 0;
    background: #fff;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table td {
    padding: 15px 0;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    color: #666;
}

.specs-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #000;
}

.specs-image img {
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.fleet-features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #000;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.fleet-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.other-fleet {
    padding: 100px 0;
    background: #fff;
}

.other-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.other-fleet-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.other-fleet-card:hover {
    transform: translateY(-10px);
}

.other-fleet-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.other-fleet-info {
    padding: 25px;
    background: var(--bg-secondary);
}

.other-fleet-info span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.other-fleet-info h4 {
    font-size: 1.3rem;
    color: #000;
    margin-top: 5px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 1024px) {
    .overview-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid,
    .other-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-specs {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .fleet-detail-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-specs {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid,
    .gallery-grid,
    .other-fleet-grid {
        grid-template-columns: 1fr;
    }
}
