/* =========================================================
   MAHADEV TAXI TOURS - MODERN FLEET CAROUSEL
========================================================= */

:root {
    --mt-orange: #F77D0A;
    --mt-orange-dark: #d96500;
    --mt-dark: #17202a;
    --mt-text: #27313a;
    --mt-muted: #707983;
    --mt-light: #f7f8fa;
    --mt-border: #e9edf1;
    --mt-white: #ffffff;
}


/* ================= SECTION ================= */

.mt-fleet-section {
    position: relative;
    padding: 85px 0 80px;
    background:
        radial-gradient(circle at 10% 10%, rgba(247,125,10,.08), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(247,125,10,.06), transparent 30%),
        #fff;
    overflow: hidden;
}


/* ================= HEADING ================= */

.mt-fleet-heading {
    max-width: 800px;
    margin: 0 auto 45px;
}

.mt-fleet-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mt-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mt-fleet-label i {
    font-size: 16px;
}

.mt-fleet-heading h2 {
    margin: 0 0 15px;
    color: var(--mt-dark);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.mt-fleet-heading h2 span {
    color: var(--mt-orange);
}

.mt-fleet-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--mt-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* ================= CAROUSEL ================= */

.mt-fleet-wrapper {
    position: relative;
    padding: 0 55px;
}

.mt-fleet-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 4px 25px;
}

.mt-fleet-track::-webkit-scrollbar {
    display: none;
}


/* ================= CARD ================= */

.mt-fleet-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: var(--mt-white);
    border: 1px solid var(--mt-border);
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 10px 35px rgba(25, 35, 45, .07);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.mt-fleet-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247,125,10,.35);
    box-shadow: 0 22px 50px rgba(25,35,45,.13);
}


/* ================= IMAGE ================= */

.mt-fleet-image {
    position: relative;
    height: 225px;
    overflow: hidden;
    background: #f1f3f5;
}

.mt-fleet-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.mt-fleet-card:hover .mt-fleet-image img {
    transform: scale(1.07);
}

.mt-fleet-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 45%,
            rgba(0,0,0,.25)
        );
    pointer-events: none;
}


/* ================= BADGE ================= */

.mt-fleet-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 30px;
    background: var(--mt-orange);
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    box-shadow: 0 5px 15px rgba(247,125,10,.25);
}


/* ================= CONTENT ================= */

.mt-fleet-content {
    padding: 22px 22px 23px;
}

.mt-fleet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.mt-fleet-category {
    color: var(--mt-orange);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mt-fleet-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4f5963;
    font-size: 12px;
    font-weight: 700;
}

.mt-fleet-rating i {
    color: #f6ad1a;
}

.mt-fleet-content h3 {
    margin: 0 0 8px;
    color: var(--mt-dark);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.mt-fleet-desc {
    min-height: 49px;
    margin: 0 0 18px;
    color: var(--mt-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* ================= FEATURES ================= */

.mt-fleet-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--mt-border);
    border-bottom: 1px solid var(--mt-border);
    padding: 14px 0;
    margin-bottom: 18px;
}

.mt-fleet-features span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #606a74;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.mt-fleet-features span + span {
    border-left: 1px solid var(--mt-border);
}

.mt-fleet-features i {
    color: var(--mt-orange);
    font-size: 17px;
}


/* ================= BOTTOM ================= */

.mt-fleet-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.mt-fleet-bottom small {
    display: block;
    margin-bottom: 2px;
    color: #8a929a;
    font-size: 10px;
    font-weight: 600;
}

.mt-fleet-bottom strong {
    display: block;
    color: var(--mt-dark);
    font-size: 21px;
    font-weight: 800;
}

.mt-fleet-bottom strong em {
    color: #737b84;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
}


/* ================= BOOK BUTTON ================= */

.mt-fleet-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 90px;
    padding: 11px 17px;
    border-radius: 8px;
    background: #25D366;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all .3s ease;
}

.mt-fleet-book:hover {
    background: #1ebe5d;
    color: #fff !important;
    transform: translateY(-2px);
}

.mt-fleet-book i {
    font-size: 16px;
}


/* ================= ARROWS ================= */

.mt-fleet-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--mt-white);
    color: var(--mt-orange);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    cursor: pointer;
    transform: translateY(-50%);
    transition: all .3s ease;
}

.mt-fleet-arrow:hover {
    background: var(--mt-orange);
    color: #fff;
    box-shadow: 0 10px 28px rgba(247,125,10,.28);
}

.mt-fleet-prev {
    left: 0;
}

.mt-fleet-next {
    right: 0;
}

.mt-fleet-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}


/* ================= DOTS ================= */

.mt-fleet-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
}

.mt-fleet-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d7dce1;
    cursor: pointer;
    transition: all .3s ease;
}

.mt-fleet-dot.active {
    width: 25px;
    border-radius: 10px;
    background: var(--mt-orange);
}


/* ================= BOTTOM CTA ================= */

.mt-fleet-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-top: 45px;
    padding: 22px 25px;
    border: 1px solid rgba(247,125,10,.18);
    border-radius: 15px;
    background: linear-gradient(
        100deg,
        #fff8f1,
        #fff
    );
}

.mt-fleet-cta strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mt-dark);
    font-size: 16px;
}

.mt-fleet-cta span {
    color: var(--mt-muted);
    font-size: 13px;
}

.mt-fleet-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--mt-orange);
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none !important;
    transition: all .3s ease;
}

.mt-fleet-cta a:hover {
    background: var(--mt-orange-dark);
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .mt-fleet-section {
        padding: 65px 0;
    }

    .mt-fleet-heading h2 {
        font-size: 34px;
    }

    .mt-fleet-wrapper {
        padding: 0 45px;
    }

    .mt-fleet-card {
        flex: 0 0 calc(50% - 12px);
    }

    .mt-fleet-image {
        height: 210px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mt-fleet-section {
        padding: 55px 0;
    }

    .mt-fleet-heading {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .mt-fleet-heading h2 {
        font-size: 28px;
    }

    .mt-fleet-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .mt-fleet-wrapper {
        padding: 0 10px;
    }

    .mt-fleet-track {
        gap: 15px;
        padding: 5px 3px 20px;
    }

    .mt-fleet-card {
        flex: 0 0 100%;
        border-radius: 17px;
    }

    .mt-fleet-image {
        height: 220px;
    }

    .mt-fleet-content {
        padding: 19px;
    }

    .mt-fleet-content h3 {
        font-size: 20px;
    }

    .mt-fleet-arrow {
        display: none;
    }

    .mt-fleet-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        margin: 30px 10px 0;
        padding: 20px;
    }

    .mt-fleet-cta a {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .mt-fleet-heading h2 {
        font-size: 25px;
    }

    .mt-fleet-image {
        height: 200px;
    }

    .mt-fleet-features span {
        font-size: 10px;
    }

    .mt-fleet-bottom strong {
        font-size: 19px;
    }

}