/* =========================================================
   CHEHAR CAB - PREMIUM FLEET CSS
========================================================= */

:root {

    --fleet-navy: #07101d;
    --fleet-navy-2: #0d1b2a;
    --fleet-card: #111c2b;

    --fleet-gold: #f5c518;
    --fleet-gold-light: #ffe566;

    --fleet-text: #edf2f7;
    --fleet-muted: #8995a7;

    --fleet-border: rgba(255,255,255,.08);

}


/* =========================================================
   COMMON
========================================================= */

.fleet-section .container,
.fleet-highlights .container,
.fleet-amenities .container,
.fleet-comparison .container,
.fleet-cta .container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}



/* =========================================================
   HERO
========================================================= */

.fleet-hero {

    position: relative;

    min-height: 400px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(245,197,24,.12),
            transparent 25%
        ),

        radial-gradient(
            circle at 15% 90%,
            rgba(124,58,237,.15),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #050a11,
            #0d1b2a 55%,
            #151326
        );

}


.fleet-hero-overlay {

    position: absolute;
    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(5,10,17,.96),
            rgba(13,27,42,.76)
        );

}


.fleet-hero-pattern {

    position: absolute;
    inset: 0;

    opacity: .25;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

}


.fleet-hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 75px 0;

}


.fleet-breadcrumb {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #687588;

    font-size: 10px;

}


.fleet-breadcrumb a {

    color: var(--fleet-gold);

    text-decoration: none;

}


.fleet-label {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--fleet-gold);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.fleet-hero h1 {

    margin: 12px 0;

    font-size: clamp(42px,6vw,65px);

    line-height: 1.03;

    font-weight: 900;

}


.fleet-hero h1 span {

    display: block;

    background:

        linear-gradient(
            90deg,
            #f5c518,
            #ffdc55,
            #fff0a3
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.fleet-hero p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.8;

}



/* =========================================================
   FILTER
========================================================= */

.fleet-filter-bar {

    position: sticky;

    top: 0;

    z-index: 50;

    padding: 13px 0;

    border-bottom: 1px solid #202b3a;

    background: rgba(7,16,29,.94);

    backdrop-filter: blur(15px);

}


.fleet-filter-inner {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    flex-wrap: wrap;

}


.fleet-filter {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 9px 15px;

    border: 1px solid #283446;

    border-radius: 50px;

    background: #111c2b;

    color: #8995a7;

    font-size: 14px;

    font-weight: 750;

    cursor: pointer;

    transition: .25s;

}


.fleet-filter:hover {

    border-color: var(--fleet-gold);

    color: #fff;

}


.fleet-filter.active {

    border-color: var(--fleet-gold);

    background: var(--fleet-gold);

    color: #07101d;

    box-shadow:
        0 5px 18px
        rgba(245,197,24,.22);

}



/* =========================================================
   FLEET SECTION
========================================================= */

.fleet-section {

    padding: 65px 0 75px;

    background: #080f19;

}


.fleet-heading {

    margin-bottom: 28px;

}


.fleet-heading > span,
.fleet-section-title > span {

    color: var(--fleet-gold);

    font-size: 14px;

    font-weight: 850;

    letter-spacing: 1.5px;

}


.fleet-heading h2,
.fleet-section-title h2 {

    margin: 6px 0;

    color: #f5f7fa;

    font-size: 28px;

    font-weight: 850;

}


.fleet-heading h2 strong,
.fleet-section-title h2 strong {

    background:

        linear-gradient(
            90deg,
            #f5c518,
            #ffd95b
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.fleet-heading p,
.fleet-section-title p {

    max-width: 570px;

    margin: 0;

    color: #6f7c8f;

    font-size: 14px;

    line-height: 1.75;

}



/* =========================================================
   GRID
========================================================= */

.fleet-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;

}



/* =========================================================
   CARD
========================================================= */

.fleet-card {

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--fleet-border);

    border-radius: 15px;

    background:

        linear-gradient(
            145deg,
            #142033,
            #0e1724
        );

    box-shadow:

        0 8px 30px
        rgba(0,0,0,.18),

        inset 0 1px 0
        rgba(255,255,255,.025);

    transition:
        transform .35s,
        border-color .35s,
        box-shadow .35s;

}


.fleet-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(245,197,24,.35);

    box-shadow:

        0 22px 50px
        rgba(0,0,0,.30),

        0 0 30px
        rgba(245,197,24,.06);

}



/* =========================================================
   IMAGE
========================================================= */

.fleet-image {

    position: relative;

    height: 205px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        linear-gradient(
            135deg,
            #202c3c,
            #101a29
        );

}


.fleet-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,0,0,.5)
        );

    pointer-events: none;

}


.fleet-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .55s ease;

}


.fleet-card:hover
.fleet-image img {

    transform:
        scale(1.07);

}


.fleet-image-fallback {

    align-items: center;

    justify-content: center;

    color: rgba(255,255,255,.18);

    font-size: 65px;

}



/* =========================================================
   BADGES
========================================================= */

.fleet-ribbon {

    position: absolute;

    top: 12px;

    left: 12px;

    z-index: 3;

    padding: 5px 9px;

    border-radius: 5px;

    color: #07101d;

    background: var(--fleet-gold);

    font-size: 7px;

    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: .7px;

}


.fleet-ribbon.blue {

    background: #60a5fa;

}


.fleet-ribbon.orange {

    background: #fb923c;

}


.fleet-ribbon.premium {

    background: #c4b5fd;

}


.fleet-ribbon.luxury {

    color: #fff;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );

}


.fleet-ribbon.group {

    color: #fff;

    background: #334155;

}


.fleet-capacity {

    position: absolute;

    top: 12px;

    right: 12px;

    z-index: 3;

    padding: 5px 8px;

    border: 1px solid
        rgba(255,255,255,.15);

    border-radius: 5px;

    color: #fff;

    background:
        rgba(0,0,0,.45);

    backdrop-filter: blur(8px);

    font-size: 7px;

}



/* =========================================================
   BODY
========================================================= */

.fleet-body {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 18px;

}


.fleet-card-head {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 13px;

}


.fleet-card-head h3 {

    margin: 0;

    color: #f2f4f7;

    font-size: 16px;

    font-weight: 850;

}


.fleet-card-head p {

    margin: 3px 0 0;

    color: #697588;

    font-size: 14px;

}


.fleet-card-head > span {

    padding: 4px 7px;

    border-radius: 5px;

    color: #f5c518;

    background:
        rgba(245,197,24,.08);

    font-size: 7px;

    font-weight: 800;

}



/* =========================================================
   SPECS
========================================================= */

.fleet-specs {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 13px;

}


.fleet-specs > div {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 8px;

    border: 1px solid #253142;

    border-radius: 5px;

    color: #8995a7;

    background: #0c1522;

    font-size: 7px;

    font-weight: 650;

}


.fleet-specs i {

    color: #c4b56b;

}



/* =========================================================
   FEATURES
========================================================= */

.fleet-features {

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin: 0 0 16px;

    padding: 0;

    list-style: none;

}


.fleet-features li {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #8995a7;

    font-size: 14px;

}


.fleet-features li::before {

    content: "✓";

    width: 16px;

    height: 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--fleet-gold);

    background:
        rgba(245,197,24,.09);

    font-size: 14px;

    font-weight: 900;

}



/* =========================================================
   FOOTER
========================================================= */

.fleet-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    margin-top: auto;

    padding-top: 14px;

    border-top: 1px solid #222d3b;

}


.fleet-footer small {

    display: block;

    margin-bottom: 3px;

    color: #697588;

    font-size: 7px;

}


.fleet-footer strong {

    color: #f5f7fa;

    font-size: 17px;

    font-weight: 900;

}


.fleet-footer em {

    display: block;

    margin-top: 2px;

    color: #626f81;

    font-size: 6.5px;

    font-style: normal;

}


.fleet-buttons {

    display: flex;

    gap: 5px;

}


.fleet-call,
.fleet-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    min-height: 34px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition: .25s;

}


.fleet-call {

    padding: 0 11px;

    color: #07101d;

    background: var(--fleet-gold);

}


.fleet-call:hover {

    color: #07101d;

    background: var(--fleet-gold-light);

    transform: translateY(-2px);

}


.fleet-whatsapp {

    width: 34px;

    color: #fff;

    background: #25d366;

}


.fleet-whatsapp:hover {

    color: #fff;

    background: #22c55e;

    transform: translateY(-2px);

}



/* =========================================================
   HIGHLIGHTS
========================================================= */

.fleet-highlights {

    position: relative;

    padding: 45px 0;

    overflow: hidden;

    background: #050b13;

}


.fleet-highlight-grid {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

}


.fleet-highlight {

    position: relative;

    padding: 18px;

    text-align: center;

}


.fleet-highlight:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 20%;

    right: 0;

    width: 1px;

    height: 60%;

    background:
        rgba(255,255,255,.08);

}


.highlight-icon {

    margin-bottom: 8px;

    color: var(--fleet-gold);

    font-size: 19px;

}


.fleet-highlight strong {

    display: block;

    color: var(--fleet-gold);

    font-size: 21px;

    font-weight: 900;

}


.fleet-highlight span {

    display: block;

    margin-top: 4px;

    color: #697588;

    font-size: 7px;

    text-transform: uppercase;

    letter-spacing: 1px;

}



/* =========================================================
   AMENITIES
========================================================= */

.fleet-amenities {

    padding: 65px 0;

    background: #f5f7fa;

}


.fleet-section-title {

    margin-bottom: 28px;

}


.fleet-amenities
.fleet-section-title h2 {

    color: #0d1b2a;

}


.fleet-amenities
.fleet-section-title p {

    color: #718096;

}


.amenities-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 13px;

}


.amenity-card {

    padding: 22px 16px;

    text-align: center;

    border: 1px solid #e5eaf0;

    border-radius: 12px;

    background: #fff;

    transition: .3s;

}


.amenity-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(245,197,24,.4);

    box-shadow:
        0 15px 35px
        rgba(13,27,42,.08);

}


.amenity-card > div {

    width: 47px;

    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 12px;

    border-radius: 12px;

    color: #c79800;

    background:
        rgba(245,197,24,.12);

    font-size: 17px;

}


.amenity-card h4 {

    margin: 0 0 6px;

    color: #0d1b2a;

    font-size: 16px;

    font-weight: 800;

}


.amenity-card p {

    margin: 0;

    color: #718096;

    font-size: 14px;

    line-height: 1.7;

}



/* =========================================================
   COMPARISON
========================================================= */

.fleet-comparison {

    padding: 65px 0;

    background: #eef2f6;

}


.comparison-wrapper {

    overflow-x: auto;

    border-radius: 12px;

}


.comparison-table {

    width: 100%;

    min-width: 720px;

    border-collapse: collapse;

    background: #fff;

}


.comparison-table th {

    padding: 13px;

    color: #fff;

    background: #0d1b2a;

    font-size: 14px;

    text-align: center;

}


.comparison-table th:first-child {

    text-align: left;

}


.comparison-table td {

    padding: 11px 13px;

    border-bottom: 1px solid #edf0f3;

    color: #64748b;

    font-size: 14px;

    text-align: center;

}


.comparison-table td:first-child {

    color: #0d1b2a;

    text-align: left;

}


.comparison-table tbody tr:hover {

    background: #fafbfc;

}


.comparison-table .yes {

    color: #16a34a;

    font-size: 12px;

    font-weight: 900;

}


.comparison-table .fare {

    color: #b58700;

    font-weight: 900;

}



/* =========================================================
   CTA
========================================================= */

.fleet-cta {

    padding: 55px 0;

    background:
        linear-gradient(
            120deg,
            #f5c518,
            #ffd95b
        );

}


.fleet-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.fleet-cta-inner > div:first-child {

    max-width: 650px;

}


.fleet-cta-inner span {

    color: #725900;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1.4px;

}


.fleet-cta-inner h2 {

    margin: 6px 0;

    color: #07101d;

    font-size: 29px;

    font-weight: 900;

}


.fleet-cta-inner h2 strong {

    color: #fff;

}


.fleet-cta-inner p {

    margin: 0;

    color: #725900;

    font-size: 10px;

    line-height: 1.7;

}


.fleet-cta-buttons {

    display: flex;

    gap: 7px;

}


.cta-call,
.cta-wa {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 42px;

    padding: 0 15px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 850;

    transition: .25s;

}


.cta-call {

    color: #fff;

    background: #07101d;

}


.cta-call:hover {

    color: #fff;

    transform: translateY(-2px);

}


.cta-wa {

    color: #fff;

    background: #25d366;

}


.cta-wa:hover {

    color: #fff;

    transform: translateY(-2px);

}



/* =========================================================
   FLOATING CALL
========================================================= */

.fleet-floating-call {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 999;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #07101d;

    background: var(--fleet-gold);

    box-shadow:
        0 7px 25px
        rgba(245,197,24,.45);

    text-decoration: none;

    animation:
        fleetPulse 2.5s infinite;

}


@keyframes fleetPulse {

    0%,100% {

        box-shadow:
            0 7px 25px
            rgba(245,197,24,.45);

    }

    50% {

        box-shadow:
            0 7px 25px
            rgba(245,197,24,.45),
            0 0 0 12px
            rgba(245,197,24,.08);

    }

}


@keyframes fleetFade {

    from {

        opacity: 0;

        transform:
            translateY(12px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .fleet-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .amenities-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:768px) {

    .fleet-hero {

        min-height: 350px;

    }

    .fleet-hero-content {

        padding: 55px 0;

    }

    .fleet-hero h1 {

        font-size: 42px;

    }

    .fleet-highlight-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .fleet-highlight {

        border-bottom:
            1px solid rgba(255,255,255,.06);

    }

    .fleet-highlight:nth-child(2)::after,
    .fleet-highlight:nth-child(4)::after {

        display: none;

    }

    .fleet-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media(max-width:560px) {

    .fleet-grid {

        grid-template-columns: 1fr;

    }

    .amenities-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .fleet-filter-inner {

        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 2px;

    }

    .fleet-filter {

        flex-shrink: 0;

    }

    .fleet-heading h2,
    .fleet-section-title h2 {

        font-size: 24px;

    }

    .fleet-cta-buttons {

        width: 100%;

        flex-wrap: wrap;

    }

}


@media(max-width:400px) {

    .amenities-grid {

        grid-template-columns: 1fr;

    }

    .fleet-floating-call {

        right: 15px;

        bottom: 15px;

    }

}