.fleet-carousel-section {
    background-color: var(--smartmove-color-theme-blue2);
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.fleet-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    margin-bottom: 40px;
}

.fleet-carousel-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

/* Filter Pill Buttons */
.fleet-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: #222;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--smartmove-color-theme-gold); /* Red from your image */
}

/* Swiper Card Style */
.fleet-slide-card {
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    position: relative;
}

.fleet-slide-image {
    height: 100%;
    width: 100%;
}

.fleet-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.fleet-slide-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Red Progress Bar Pagination */
.fleet-swiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: 0 !important;
}

.fleet-swiper .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #333;
    opacity: 1;
}

.fleet-swiper .swiper-pagination-bullet-active {
    background: white !important;
    width: 80px; /* Makes the active bar longer like the photo */
}


/* fleets Page  */
/* WhatsApp Link on Card Image */
.fleet-whatsapp-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: #25d366; /* WhatsApp Green */
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.fleet-whatsapp-btn:hover {
    background-color: var(--smartmove-color-theme-gold); /* Transitions to your theme gold on hover */
    transform: scale(1.1) rotate(15deg);
}

/* Ensure the card image relative container works */
.fleet-card__image {
    position: relative;
}

/* spacing for the icon */
.ml-2 {
    margin-left: 8px;
}

.fleet-grid-section {
    padding: 80px 0;
    background-color: var(--smartmove-color-theme-blue2);
}

.fleet-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--smartmove-color-theme-gold);
    background: rgba(255, 255, 255, 0.06);
}

.fleet-card__image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.fleet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card__image img {
    transform: scale(1.1);
}

.fleet-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--smartmove-color-theme-gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fleet-card__content {
    padding: 25px;
}

.fleet-card__title {
    color: var(--smartmove-white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--smartmove-font-two);
}

.fleet-card__pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-item {
    text-align: center;
    flex: 1;
}

.price-label {
    display: block;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    color: var(--smartmove-color-theme-gold);
    font-weight: 700;
    font-size: 16px;
}

.price-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.fleet-card__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--smartmove-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.fleet-card__btn:hover {
    color: var(--smartmove-color-theme-gold);
}


/* single fleet  */
/* Fleet Single Page Styling */
.rounded-30 {
    border-radius: 30px;
}

.gold-text {
    color: var(--smartmove-color-theme-gold);
}

.fleet-booking-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px;
}

.btn-whatsapp-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white !important;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.btn-whatsapp-booking:hover {
    background: var(--smartmove-color-theme-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.font-weight-bold {
    font-weight: 700;
}

.mr-2 {
    margin-right: 10px;
}

/* Ensure the sticky sidebar works on mobile */
@media (max-width: 991px) {
    .sticky-top {
        position: relative !important;
        top: 0 !important;
        margin-top: 50px;
    }
}