
/* Banner Styles */
.vmoBanner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.vmoBannerLeft {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.vmoBannerImg {
    position: relative;
    width: 100%;
}

.vmoBannerImg > img {
    width: 100%;
    height: auto;
}

.vmoBannerImg span {
    position: absolute;
    display: block;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes cloudMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(15px); }
    100% { transform: translateX(0); }
}

/* Specific Positions based on typical layout - adjusted for the assets */
.ani01 { /* Cloud 1 */
    top: 10%;
    left: 10%;
    animation: cloudMove 4s ease-in-out infinite;
}
.ani02 { /* Cloud 2 */
    top: 20%;
    right: 20%;
    animation: cloudMove 5s ease-in-out infinite;
    animation-delay: 1s;
}
.ani03 { /* Cloud 3 */
    top: 5%;
    right: 40%;
    animation: cloudMove 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Badges */
.ani04 { /* Secure */
    top: 15%;
    left: 0;
    animation: float 3s ease-in-out infinite;
}
.ani05 { /* Affordable */
    top: 0;
    right: 10%;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}
.ani06 { /* Trust */
    bottom: 20%;
    right: 0;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* CTA Banner for Calculator Page */
.estimate-cta-banner-new {
    background-image: linear-gradient(rgba(233, 236, 239, 0.85), rgba(233, 236, 239, 0.85)), url('/images/truck-in-warehouse-with-orange-and-black-trucks-photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem !important;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .estimate-cta-banner-new {
        flex-direction: row;
    }
}
