/* ====================================================
   ROYAL COACH CHARTER
   INDIVIDUAL FLEET VEHICLE PAGES
   ==================================================== */

.fleet-vehicle-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #777;
}

.fleet-vehicle-page *,
.fleet-vehicle-page *::before,
.fleet-vehicle-page *::after {
    box-sizing: border-box;
}


/* ====================================================
   COMMON FLEET HEADER
   ==================================================== */

.fleet-section-header {
    width: 100%;
    padding: 28px 20px;
    border-bottom: 1px solid #fff;
    text-align: center;
}

.fleet-section-header h1 {
    margin: 0;
    color: #777;
    font-size: 31px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
}


/* ====================================================
   LABELS
   ==================================================== */

.fleet-label {
    display: block;
    margin-bottom: 10px;
    color: #79c843;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ====================================================
   INTRO
   ==================================================== */

.fleet-vehicle-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 30px 45px;
    text-align: center;
}

.fleet-vehicle-intro h2 {
    margin: 0 auto 18px;
    color: #777;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.fleet-vehicle-intro p {
    max-width: 780px;
    margin: 0 auto;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* ====================================================
   VEHICLE BLOCKS
   ==================================================== */

.fleet-vehicle-block {
    width: 100%;
    padding: 55px 20px 65px;
    text-align: center;
}

.fleet-grey { background: #f2f3f3; }

.fleet-vehicle-heading {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.fleet-vehicle-heading h2 {
    margin: 0 auto 14px;
    color: #777;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.fleet-vehicle-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


/* ====================================================
   EXTERIOR / INTERIOR HOVER
   ==================================================== */

.fleet-hover {
    position: relative;
    width: min(1000px, calc(100% - 40px));
    aspect-ratio: 1000 / 550;
    margin: 0 auto;
    overflow: hidden;
    background: #f5f5f5;
}

.fleet-hover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
}

.fleet-hover .fleet-interior {   z-index: 1; }

.fleet-hover .fleet-exterior { z-index: 2; }

.fleet-hover:hover .fleet-exterior { opacity: 0;  }

.fleet-hover-note {
    margin: 12px 0 0;
    color: #999;
    font-size: 12px;
    font-style: italic;
}


/* ====================================================
   FEATURES
   ==================================================== */

.fleet-features-section {
    width: 100%;
    padding: 65px 30px;
}

.fleet-features-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.fleet-features-inner > h2 {
    margin: 0 auto 35px;
    color: #777;
    font-size: 30px;
    font-weight: 400;
}

.fleet-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}

.fleet-feature-grid h3 {
    margin: 0 0 9px;
    color: #777;
    font-size: 16px;
    font-weight: 600;
}

.fleet-feature-grid p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* ====================================================
   END
   ==================================================== */

.fleet-vehicle-end {
    padding: 60px 30px;
    text-align: center;
}

.fleet-vehicle-end h2 {
    margin: 0 0 14px;
    color: #777;
    font-size: 30px;
    font-weight: 400;
}

.fleet-vehicle-end p {
    margin: 0;
    color: #777;
    font-size: 16px;
}


/* ====================================================
   TABLET
   ==================================================== */

@media only screen and (max-width: 900px) {

    .fleet-feature-grid {  grid-template-columns: 1fr 1fr;   }

}


/* ====================================================
   MOBILE
   ==================================================== */

@media only screen and (max-width: 600px) {

    .fleet-section-header { padding: 22px 15px; }

    .fleet-section-header h1 {
        font-size: 25px;
        letter-spacing: .12em;
    }

    .fleet-vehicle-intro { padding: 40px 22px; }

    .fleet-vehicle-intro h2 { font-size: 28px; }

    .fleet-vehicle-block {  padding: 45px 0 50px; }

    .fleet-vehicle-heading { padding: 0 22px;  }

    .fleet-vehicle-heading h2 { font-size: 28px;    }

    .fleet-hover {
        width: 100%;
        border-left: 0;
        border-right: 0;
    }

    .fleet-hover-note {  display: none;   }

    .fleet-features-section {  padding: 50px 22px;    }

    .fleet-feature-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

}