/* =====================================================
   GLOBAL FIXES
===================================================== */

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.fleets-page {
    background: #f9f9f9;
    padding-bottom: 60px;
}

/* =====================================================
   BANNER
===================================================== */

.banner-wrapper .highlighter {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.banner-wrapper p {
    font-size: 18px;
    color: #fff;
}

/* =====================================================
   NEW STEP PROGRESS BAR (FINAL DESIGN)
===================================================== */

.atl-step-wrapper {
    background: #2f5e55;
    border-radius: 28px;
    padding: 35px 45px;
    color: #fff;
    position: relative;
    margin-top: 40px;
}

/* Background line (full width) */
.atl-step-line-bg {
    position: absolute;
    top: 62px;
    left: 45px;
    right: 45px;
    height: 8px;
    background: #c7c7c7;
    border-radius: 10px;
    z-index: 1;
}

/* Active line (dynamic width) */
.atl-step-line-active {
    position: absolute;
    top: 62px;
    left: 45px;
    height: 8px;
    background: #ffd700;
    border-radius: 10px;
    z-index: 2;
    width: 66%; /* Step 1→2 active */
}

/* Flex container for steps */
/* Remove left/right padding only for the step bar */
.atl-step-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.atl-step-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    width : 100%;
    margin-bottom: 20px;
}

/* Each step */
.atl-step {
    flex: 0 0 auto;
    text-align: center;
}

/* Step Circles */
.atl-step-circle {
    width: 50px;
    height: 50px;
    background: #bfbfbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    color: #fff;
    font-size: 18px;
}

.atl-step-circle.active {
    background: #ffd700;
    color: #000;
}

/* Labels */
.atl-step-label {
    font-size: 15px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===== Summary Row ===== */

.atl-step-summary {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.25);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
}

.atl-step-summary .miles {
    opacity: 0.8;
}

/* Mobile Adjustments */
@media(max-width:768px){

    .atl-step-wrapper {
        padding: 25px;
    }

    .atl-step-line-bg,
    .atl-step-line-active {
        left: 25px;
        right: 25px;
        top: 85px;
    }

    .atl-step-steps {
        flex-direction: column;
        gap: 30px;
    }

    .atl-step-summary {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* =====================================================
   VEHICLE GRID
===================================================== */

.all-fleets {
    padding: 60px 0;
}

.card.fleethome_slider {
    background: rgb(50 50 50 / 70%);
    border-radius: 30px !important;
    position: relative;
    z-index: 1;
    min-height: 470px;
    transition: all 0.3s ease;
}

.card.fleethome_slider:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,1) 0%,
        rgba(23,60,42,0) 54%,
        rgba(48,126,88,1) 100%
    );
    opacity: 0.3;
    border-radius: inherit;
    z-index: -1;
}

.card.fleethome_slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px #0000001a;
}

/* Restore fixed image area */
.fleetImage {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
}

/* Image inside container */
.fleetImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 15px;
}

/* Restore original card height */
.card.fleethome_slider {
    min-height: 420px;
}


/* CONTENT INSIDE CARD */

.fleethome_sliderbox {
    padding: 15px;
}

.fleethome_sliderheading.text-center {
    border-bottom: 1px solid rgba(81, 81, 81, 0.4);
}

.fleethome_sliderheading h3 {
    color: #fff;
    font-weight: 300 !important;
    padding: 10px 5px;
    font-size: clamp(12px, 2vw, 14px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

/* =====================================================
   BENEFITS
===================================================== */

.benifit_fleet_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.benifit_fleet span {
    color: #fff;
    font-size: 14px;
    padding: 5px 15px;
    font-weight: 300 !important;
}

/* =====================================================
   PRICING
===================================================== */

.vehicle-pricing {
    margin-top: 12px;
    color: #fff;
}

.vehicle-price-non {
    font-size: 18px;
    font-weight: 600;
    color: #ffdfdf;
}

.vehicle-price-member {
    font-size: 15px;
    font-weight: 400;
    color: #c8ffe0;
    opacity: 0.9;
}

.vehicle-select-btn {
    background: #325c52!important;
    color: #fff!important;
    padding: 10px 26px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
    border: 2px solid #fff!important;
}

.vehicle-select-btn:hover {
    background: #fff!important;
    color: #325c52!important;
    
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .banner-wrapper {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {

    .banner-wrapper {
        padding: 60px 0;
    }

    .card.fleethome_slider {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .banner-wrapper {
        padding: 40px 0;
    }

    .vehicle-select-btn {
        padding: 8px 18px;
    }
}
