/* ============================================
   COMBINED FLEET & GALLERY LAYOUT
   ============================================ */
.fleet-gallery-section {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
    overflow: hidden;
}

.fleet-gallery-wrapper {
    display: flex;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.fleet-column {
    flex: 0 0 400px;
    min-width: 300px;
}

.gallery-column {
    flex: 1;
    min-width: 300px;
}

/* Fleet Swiper Specifics */
.fleet-swiper {
    padding-bottom: var(--space-xl) !important;
}

.fleet-swiper .swiper-slide {
    height: auto;
    width: 90%;
    /* Să lăsăm puțin din următorul slide vizibil */
}

@media (min-width: 1024px) {
    .fleet-swiper .swiper-slide {
        width: 100%;
        /* 1 singur card vizibil cum s-a cerut */
    }
}

/* Gallery Column Specifics */
.gallery-column .gallery-container {
    max-width: 100%;
}

.gallery-side-swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-side-swiper .swiper-slide {
    aspect-ratio: 16/9;
    position: relative;
}

.gallery-thumbs-swiper.sidebar-thumbs {
    height: 70px;
    margin-top: var(--space-xs);
}

.gallery-thumbs-swiper.sidebar-thumbs .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.gallery-thumbs-swiper.sidebar-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary);
}

.gallery-side-swiper img,
.gallery-thumbs-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-size: var(--font-sm);
    font-weight: 500;
}

/* Section Title Alignment */
.align-left {
    text-align: left;
    margin-left: 0;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {

    .fleet-column,
    .gallery-column {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .gallery-column {
        margin-top: var(--space-xl);
    }

    .gallery-side-swiper .swiper-slide {
        aspect-ratio: 16/9;
    }
}