.fleet-carousel-e761feab {
    width: 100%;
    overflow: hidden;
    padding: 40px 10%;
    position: relative; 
}

@media (max-width: 767px) {
    .fleet-carousel-e761feab {
        padding: 40px 0;
    }
}

.fleet-swiper-e761feab {
    width: 100%;
    overflow: visible !important;
}

.fleet-swiper-e761feab .swiper-slide {
    width: 100%;
    max-width: 1000px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    height: auto; /* Ensures Swiper slide adapts naturally to content */
}

.fleet-swiper-e761feab .swiper-slide-active {
    opacity: 1;
}

.fleet-slide-inner-e761feab {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

@media (min-width: 768px) {
    .fleet-slide-inner-e761feab {
        flex-direction: row;
    }
}

.fleet-slide-image-e761feab {
    /* FIX: Set flex to none so it respects height on mobile instead of stretching */
    flex: 0 0 auto; 
    height: 30vh;
    min-height: 200px;
    max-height: 280px; /* Added optional max-height cap for mobile */
    display: block;
    width: 100%;
    overflow: hidden;
}

.fleet-slide-image-e761feab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (min-width: 768px) {
    .fleet-slide-image-e761feab {
        /* Restores side-by-side 50% width on desktop */
        flex: 0 0 50%;
        height: auto;
        min-height: 300px;
        max-height: none;
    }
}

.fleet-slide-content-e761feab {
    flex: 1;
    padding: 0 1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .fleet-slide-content-e761feab {
        padding: 2rem;
    }
}

.fleet-cat-e761feab {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c99c56;
    font-weight: 600;
}

.fleet-title-e761feab {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 20px;
    color: #fff;
    font-family: 'Times New Roman', serif;
}

.fleet-desc-e761feab {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}
@media (min-width: 768px) {
    .fleet-desc-e761feab {
        /* Restores side-by-side 50% width on desktop */
        margin-bottom: 30px;
		padding-bottom: 30px;
    }
}

.fleet-features-e761feab h5 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: 0, 0, 15px;
}

.fleet-features-e761feab ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.fleet-features-e761feab ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.fleet-features-e761feab ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #c99c56;
    border-radius: 50%;
}

.fleet-swiper-e761feab .swiper-pagination {
    position: static !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    width: 100%;
}

.fleet-swiper-e761feab .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #eba328 !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fleet-swiper-e761feab .swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1 !important;
}