/* ===========================
   Stats Counter Section
=========================== */
.stats-item {
    padding: 30px 15px;
}

.stats-item i {
    font-size: 36px;
    color: #ff9900;
    margin-bottom: 15px;
}

.stats-item h2 {
    font-size: 40px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

.stats-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-item.bordered {
    border-left: 3px solid #ff9900;
}

@media (max-width: 767px) {
    .stats-item.bordered {
        border-left: none;
    }
    .stats-item {
        border-bottom: 2px solid #ff9900;
    }
}

/* ===========================
   FAQ Section
=========================== */
.faq-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ff9900;
}

.faq-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.faq-card h5 i {
    color: #ff9900;
    margin-right: 8px;
}

.faq-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 26px;
}

.faq-card p a {
    color: #ff9900;
    font-weight: 600;
}

.faq-card p a:hover {
    color: #e08800;
}

/* ===========================
   Fleet / Vehicle Showcase
=========================== */
.fleet-section {
    background: #fff;
}

.fleet-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 10px auto 0;
}

.fleet-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin-bottom: 30px;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

.fleet-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f5f5f5;
}

.fleet-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.fleet-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.fleet-slide.active {
    opacity: 1;
    position: relative;
}

.fleet-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.fleet-card:hover .fleet-slide img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.fleet-slide-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 25px;
    padding: 4px 6px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.fleet-nav-btn {
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 11;
}

.fleet-nav-btn:hover {
    color: #fff;
}

.fleet-nav-btn.active {
    background: #ff9900;
    color: #fff;
}

.fleet-nav-btn i {
    font-size: 11px;
}

.fleet-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff9900;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 2;
}

.fleet-info {
    padding: 20px 24px 24px;
}

.fleet-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.fleet-features {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.fleet-features li {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fleet-features li i {
    color: #ff9900;
    font-size: 14px;
}

/* Swiper wrapper & arrows */
.fleet-swiper-wrap {
    position: relative;
    padding: 0 50px;
}

.fleet-swiper {
    overflow: hidden;
}

.fleet-nav-prev,
.fleet-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ff9900;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 153, 0, 0.35);
}

.fleet-nav-prev:hover,
.fleet-nav-next:hover {
    background: #e08800;
    box-shadow: 0 5px 18px rgba(255, 153, 0, 0.5);
}

.fleet-nav-prev {
    left: 0;
}

.fleet-nav-next {
    right: 0;
}

@media (max-width: 767px) {
    .fleet-swiper-wrap {
        padding: 0 40px;
    }

    .fleet-nav-prev,
    .fleet-nav-next {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

