/* One page namespace: .rideshare-service-page */

.rideshare-service-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #111111;
    font-family: "Poppins", sans-serif;
}

.rideshare-service-page *,
.rideshare-service-page *::before,
.rideshare-service-page *::after {
    box-sizing: border-box;
}

.rideshare-service-page .rideshare-shell {
    width: min(var(--sozo-container-width), 1120px);
    margin-inline: auto;
}

.rideshare-service-page p {
    margin: 0;
    color: #222222;
    font-family: "Poppins", sans-serif;
    font-size: clamp(14.5px, 1.5vw, 17px);
    font-weight: 300;
    line-height: 1.75;
}

.rideshare-service-page .rideshare-section {
    width: 100%;
    padding: var(--sozo-section-pad-y) 0;
}

.rideshare-service-page .rideshare-section--white {
    background: #ffffff;
}

.rideshare-service-page .rideshare-section--blue-soft {
    background: #f3f9ff;
}

.rideshare-service-page .rideshare-heading {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 30px;
    padding-bottom: 32px;
    color: #050505;
    font-family: "Quantico", sans-serif;
     font-size: clamp(14px, 5vw, 34px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rideshare-service-page .rideshare-heading::before,
.rideshare-service-page .rideshare-heading::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 46%;
    right: auto;
}

.rideshare-service-page .rideshare-heading::before {
    left: 0;
    bottom: 14px;
    background: var(--primary-color);
}

.rideshare-service-page .rideshare-heading::after {
    left: 25%;
    bottom: 0;
    background: var(--secondary-color);
}

.rideshare-service-page .rideshare-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    border: 2px solid var(--primary-color); 
    color: #ffffff !important;
     font-family: var(--bs-btn-font-family);
    font-size: clamp(14.5px, 1.5vw, 15px);
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    padding: 11px 23px;
    border: 2px solid #ffa51e;
    border-radius: 10px;
}

/* Hero */





  /* =========================================================
   RIDESHARE SERVICE INNER-PAGE HERO
========================================================= */

.rideshare-service-page .rideshare-service-hero {
    position: relative;
    width: 100%;
    min-height: clamp(530px, 46vw, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            115deg,
            #faaa2d 0%,
            #faaa2d 58%,
            #ffb83f 100%
        );
}

/* Subtle background decoration */

.rideshare-service-page .rideshare-service-hero__pattern {
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    opacity: 0.75;
}

/* Blue diagonal background shape */

.rideshare-service-page .rideshare-service-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: -25%;
    right: -9%;
    width: 49%;
    height: 155%;
    background-color: var(--secondary-color);
    transform: rotate(8deg);
    transform-origin: center;
}

/* Transparent secondary blue layer */

.rideshare-service-page .rideshare-service-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -34%;
    right: 25%;
    width: 18%;
    height: 170%;
    background-color: rgba(0, 91, 170, 0.13);
    transform: rotate(8deg);
}

/* Main container */

.rideshare-service-page .rideshare-service-hero__container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, 0.92fr);
    align-items: center;
    gap: clamp(35px, 6vw, 85px);
    padding-top: clamp(65px, 7vw, 95px);
    padding-bottom: clamp(90px, 10vw, 135px);
}

/* Left content */

.rideshare-service-page .rideshare-service-hero__content {
    position: relative;
    max-width: 680px;
}

/* Breadcrumb */


/* Main heading */

.rideshare-service-page .rideshare-service-hero__content h1 {
    position: relative;
    margin: 0;
     margin: 0;
    color: #ffffff;
    font-family: "Quantico", sans-serif;
    font-size: clamp(31px, 3.2vw, 45px);
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

/* Hero paragraph */

.rideshare-service-page .rideshare-service-hero__content p {
    max-width: 650px;
    margin-top: 24px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(14.5px, 1.5vw, 17px);
    font-weight: 300;
    line-height: 1.75;
}

/* CTA */

.rideshare-service-page .rideshare-service-hero__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 11px 23px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: #ffffff !important;
    font-family: var(--bs-btn-font-family);
    font-size: clamp(14.5px, 1.5vw, 15px);
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(0, 62, 118, 0.2);
}

.rideshare-service-page .rideshare-service-hero__button:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: var(--secondary-color) !important;
}

/* Right visual */

.rideshare-service-page .rideshare-service-hero__visual {
    position: relative;
    min-width: 0;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rideshare-service-page .rideshare-service-hero__circle {
    position: absolute;
    width: clamp(280px, 30vw, 440px);
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.rideshare-service-page .rideshare-service-hero__circle::before,
.rideshare-service-page .rideshare-service-hero__circle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.rideshare-service-page .rideshare-service-hero__circle::before {
    inset: 9%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rideshare-service-page .rideshare-service-hero__circle::after {
    inset: 20%;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Vehicle image */

.rideshare-service-page .rideshare-service-hero__vehicle {
    position: relative;
    z-index: 3;
    width: 120%;
    margin-left: -14%;
}

.rideshare-service-page .rideshare-service-hero__vehicle img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    filter:
        drop-shadow(0 28px 22px rgba(0, 0, 0, 0.28));
}


.rideshare-service-page .rideshare-service-hero__badge {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 24px;
    min-width: 190px;
    padding: 17px 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 50, 95, 0.22);
}

.rideshare-service-page .rideshare-service-hero__badge strong,
.rideshare-service-page .rideshare-service-hero__badge span {
    display: block;
}

.rideshare-service-page .rideshare-service-hero__badge strong {
    color: var(--secondary-color);
    font-family: "Quantico", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.rideshare-service-page .rideshare-service-hero__badge span {
    margin-top: 4px;
    color: #222222;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}



.rideshare-service-page .rideshare-service-hero__bottom-shape {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: clamp(55px, 6vw, 88px);
    background-image: url("../../../images/textures/fire-parallelogram--orange.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 120% 100%;
    filter: brightness(0) invert(1);
    pointer-events: none;
}



@media (max-width: 1199px) {
    .rideshare-service-page .rideshare-service-hero__container {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(370px, 0.95fr);
        gap: 42px;
    }

    .rideshare-service-page .rideshare-service-hero__vehicle {
        width: 112%;
        margin-left: -8%;
    }

    .rideshare-service-page .rideshare-service-hero__badge {
        right: 5px;
    }
}



@media (max-width: 991px) {
    .rideshare-service-page .rideshare-service-hero {
        min-height: auto;
    }

    .rideshare-service-page .rideshare-service-hero::before {
        top: auto;
        right: -20%;
        bottom: -33%;
        width: 100%;
        height: 62%;
        transform: rotate(-7deg);
    }

    .rideshare-service-page .rideshare-service-hero::after {
        display: none;
    }

    .rideshare-service-page .rideshare-service-hero__container {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 65px;
        padding-bottom: 110px;
    }

    .rideshare-service-page .rideshare-service-hero__content {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .rideshare-service-page .rideshare-service-hero__breadcrumb {
        justify-content: center;
    }

    .rideshare-service-page .rideshare-service-hero__content h1::before {
        left: calc(50% - 92px);
    }

    .rideshare-service-page .rideshare-service-hero__content h1::after {
        left: calc(50% - 30px);
    }

    .rideshare-service-page .rideshare-service-hero__content p {
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-service-hero__visual {
        width: min(100%, 680px);
        min-height: 340px;
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-service-hero__vehicle {
        width: 100%;
        margin-left: 0;
    }

    .rideshare-service-page .rideshare-service-hero__badge {
        right: 30px;
        bottom: 5px;
    }
}



@media (max-width: 767px) {
    .rideshare-service-page .rideshare-service-hero__container {
        padding-top: 52px;
        padding-bottom: 90px;
    }

    .rideshare-service-page .rideshare-service-hero__breadcrumb {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .rideshare-service-page .rideshare-service-hero__content h1 {
        padding-bottom: 23px;
        font-size: clamp(29px, 8.5vw, 39px);
        line-height: 1.16;
    }

    .rideshare-service-page .rideshare-service-hero__content h1::before,
    .rideshare-service-page .rideshare-service-hero__content h1::after {
        width: 100px;
        height: 3px;
    }

    .rideshare-service-page .rideshare-service-hero__content h1::before {
        left: calc(50% - 75px);
        bottom: 9px;
    }

    .rideshare-service-page .rideshare-service-hero__content h1::after {
        left: calc(50% - 25px);
    }

    .rideshare-service-page .rideshare-service-hero__content p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .rideshare-service-page .rideshare-service-hero__button {
        width: 100%;
        max-width: 330px;
        margin-top: 25px;
    }

    .rideshare-service-page .rideshare-service-hero__visual {
        min-height: 275px;
    }

    .rideshare-service-page .rideshare-service-hero__circle {
        width: min(80vw, 330px);
    }

    .rideshare-service-page .rideshare-service-hero__badge {
        right: 0;
        bottom: -10px;
        min-width: 165px;
        padding: 13px 15px;
    }

    .rideshare-service-page .rideshare-service-hero__badge strong {
        font-size: 16px;
    }

    .rideshare-service-page .rideshare-service-hero__badge span {
        font-size: 10px;
    }
}



@media (max-width: 480px) {
    .rideshare-service-page .rideshare-service-hero__container {
        gap: 28px;
    }

    .rideshare-service-page .rideshare-service-hero__visual {
        min-height: 235px;
    }

    .rideshare-service-page .rideshare-service-hero__vehicle {
        width: 112%;
        margin-left: -6%;
    }

    .rideshare-service-page .rideshare-service-hero__badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: fit-content;
        margin: -8px auto 0;
        text-align: left;
    }
}


/* Two-column content */

.rideshare-service-page .rideshare-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.rideshare-service-page .rideshare-split--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.rideshare-service-page .rideshare-copy p + p {
    margin-top: 22px;
}

/* Home-style framed image */

.rideshare-service-page .rideshare-framed-image {
    position: relative;
    width: min(100%, 470px);
    min-height: 0;
    margin-inline: auto;
    padding: 22px;
}

.rideshare-service-page .rideshare-framed-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 470px;
    object-fit: cover;
    object-position: center;
}

.rideshare-service-page .rideshare-framed-image__shape {
    position: absolute;
    z-index: 1;
    width: 48%;
    height: 48%;
    background-image: url("../../../images/textures/L-shape--orange.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.rideshare-service-page .rideshare-framed-image__shape--top {
    top: 0;
    left: 0;
}

.rideshare-service-page .rideshare-framed-image__shape--bottom {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

/* Vehicle display */

.rideshare-service-page .rideshare-vehicle-showcase {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rideshare-service-page .rideshare-vehicle-showcase__splash {
    position: absolute;
    inset: 12% 3%;
    background-image: url("../../../images/textures/irregular-splash-orange.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.rideshare-service-page .rideshare-vehicle-showcase img {
    position: relative;
    z-index: 2;
    display: block;
    width: 105%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 22px rgba(0, 91, 170, 0.2));
}

/* Section header */

.rideshare-service-page .rideshare-section-header {
    max-width: 950px;
    margin-bottom: 42px;
}

.rideshare-service-page .rideshare-section-header--center {
    margin-inline: auto;
    text-align: center;
}

.rideshare-service-page .rideshare-section-header--center .rideshare-heading {
    margin-inline: auto;
}

.rideshare-service-page .rideshare-section-header--center .rideshare-heading::before {
    left: 17%;
}

.rideshare-service-page .rideshare-section-header--center .rideshare-heading::after {
    left: 42%;
}

/* Pricing table */

.rideshare-service-page .rideshare-table-wrap {
    width: 100%;
    overflow: hidden;
    border: 5px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(23, 67, 100, 0.1);
}

.rideshare-service-page .rideshare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.rideshare-service-page .rideshare-table th,
.rideshare-service-page .rideshare-table td {
    border: 1px solid #c9d0d5;
    text-align: left;
    vertical-align: middle;
}

.rideshare-service-page .rideshare-table thead th {
    padding: 17px 16px;
    background: var(--secondary-color);
    color: #ffffff;
    font-family: "Quantico", sans-serif;
    font-size: clamp(15px, 1.45vw, 19px);
    font-weight: 700;
    line-height: 1.25;
}

.rideshare-service-page .rideshare-table tbody td {
    padding: 14px 16px;
    color: #111111;
    font-size: clamp(14px, 1.35vw, 16px);
    font-weight: 300;
    line-height: 1.45;
}

.rideshare-service-page .rideshare-table tbody tr:nth-child(even) td {
    background: #f8fbff;
}

.rideshare-service-page .rideshare-table__vehicle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.rideshare-service-page .rideshare-table__vehicle img {
    width: 112px;
    height: 72px;
    flex: 0 0 112px;
    object-fit: contain;
}

.rideshare-service-page .rideshare-pricing-note {
    margin-top: 38px;
}

/* Steps */

.rideshare-service-page .rideshare-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rideshare-service-page .rideshare-step {
    position: relative;
    min-height: 265px;
    padding: 34px 28px 30px;
    border-radius: 18px;
    background: #f3f9ff;
    box-shadow: 0 12px 28px rgba(0, 91, 170, 0.09);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.rideshare-service-page .rideshare-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 91, 170, 0.14);
}

.rideshare-service-page .rideshare-step__number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-family: "Quantico", sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.rideshare-service-page .rideshare-step h3 {
    margin: 24px 0 12px;
    color: var(--secondary-color);
    font-family: "Quantico", sans-serif;
    font-size: clamp(19px, 1.8vw, 23px);
    font-weight: 700;
    line-height: 1.3;
}

/* Location */

.rideshare-service-page .rideshare-location {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
}

.rideshare-service-page .rideshare-location::after {
    content: "";
    position: absolute;
    right: -5%;
    bottom: -45%;
    width: 55%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.rideshare-service-page .rideshare-location__inner {
    position: relative;
    z-index: 2;
    min-height: 385px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
    align-items: center;
    gap: 35px;
    padding-block: 58px;
}

.rideshare-service-page .rideshare-location__content h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Quantico", sans-serif;
      font-size: clamp(14px, 5vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.rideshare-service-page .rideshare-location__content p {
    margin-top: 24px;
    color: #ffffff;
}

.rideshare-service-page .rideshare-location__image img {
    display: block;
    width: 115%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.24));
}

/* Related */

.rideshare-service-page .rideshare-related {
    max-width: 900px;
    text-align: left;
}

/* FAQ */


/*^^^^^^^^^ CURRENT PAGE - STYLES {{START}} ^^^^^^^^^*/
.sozo-floating-box {
    width: 65%;
    margin-block: 3%;
}


.faqs {
    margin-top: 4%;
}
.faqs .faqs-title {
    margin-inline: auto;
    /* color: white; */
    color: var(--secondary-color);
}

.faqs .faqs-container {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
    padding-inline: 2.4%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
    /* margin-top: 5.5%; */
}
.faqs .faqs-heading {
    font-size: clamp(18px, 7vw, 40px);
    margin-top: 5.5%;
}
.faqs .accordion .accordion-title {
    font-size: clamp(14px, 5vw, 34px);
    color: black;
    margin-top: 5.5%;
    font-family: "Quantico", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
.faqs .accordion .accordion-item {
    border-radius: 16px;
    background-color: var(--primary-color-dim-opacity);
    border: 2px solid var(--primary-color-less-opacity);
    margin-block: 2.5%;
}
.faqs .accordion .accordion-item:not(:first-of-type) {
    border: 2px solid var(--primary-color-less-opacity);
}
.faqs .accordion .accordion-item .accordion-header .accordion-button {
    border-radius: 14px;
    box-shadow: none;
    background-color: transparent;
    font-size: clamp(3px, 3vw, 16px);
    font-family: "Quantico", sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: start;
}
.faqs
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed) {
    color: black;
}
.faqs .accordion .accordion-item .accordion-header .accordion-button::after {
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 22px;
    background-position: center;
}
.faqs
    .accordion
    .accordion-item:has(.accordion-collapse.show)
    .accordion-button {
    color: black;
    background-color: var(--primary-color-half-opacity);
}

.accordion-body{
     color: inherit;
    font-family: "Poppins", sans-serif;
    font-size: clamp(14.5px, 1.5vw, 17px);
    font-weight: 300;
   
}

/* Final CTA */

.rideshare-service-page .rideshare-final-cta {
    padding: 48px 0;
    background: var(--primary-color);
    text-align: center;
}

.rideshare-service-page .rideshare-final-cta p {
    max-width: 930px;
    margin-inline: auto;
    color: #ffffff;
      font-family: "Poppins", sans-serif;
    font-size: clamp(14.5px, 1.5vw, 17px);
    font-weight: 400;
    line-height: 1.45;
}

/* Small desktop */

@media (max-width: 1199px) {
    .rideshare-service-page .rideshare-hero__inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    }

    .rideshare-service-page .rideshare-split,
    .rideshare-service-page .rideshare-split--reverse {
        grid-template-columns: minmax(290px, 0.9fr) minmax(380px, 1.1fr);
        gap: 55px;
    }

    .rideshare-service-page .rideshare-table__vehicle img {
        width: 95px;
        flex-basis: 95px;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .rideshare-service-page .rideshare-shell {
        width: var(--sozo-container-width);
    }

    .rideshare-service-page .rideshare-hero {
        min-height: auto;
    }

    .rideshare-service-page .rideshare-hero__inner {
        grid-template-columns: 1fr;
        padding-block: 75px 55px;
        text-align: center;
    }

    .rideshare-service-page .rideshare-hero__content p {
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-hero__image {
        width: min(100%, 690px);
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-hero__image img {
        width: 100%;
        margin-left: 0;
    }

    .rideshare-service-page .rideshare-hero__orange-strip {
        right: 8%;
        width: 30%;
    }

    .rideshare-service-page .rideshare-split,
    .rideshare-service-page .rideshare-split--reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .rideshare-service-page .rideshare-split--reverse .rideshare-copy {
        order: 2;
    }

    .rideshare-service-page .rideshare-split--reverse .rideshare-vehicle-showcase {
        order: 1;
    }

    .rideshare-service-page .rideshare-copy {
        max-width: 760px;
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rideshare-service-page .rideshare-table {
        min-width: 880px;
    }

    .rideshare-service-page .rideshare-steps {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-step {
        min-height: 0;
    }

    .rideshare-service-page .rideshare-location__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rideshare-service-page .rideshare-location__image {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-location__image img {
        width: 100%;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .rideshare-service-page .rideshare-shell {
        width: var(--sozo-container-width);
    }

    .rideshare-service-page .rideshare-section {
        padding: var(--sozo-section-pad-y) 0;
    }

    .rideshare-service-page p {
        font-size: 14px;
        line-height: 1.7;
    }

    .rideshare-service-page .rideshare-heading {
        margin-bottom: 24px;
        padding-bottom: 32px;
        font-size: clamp(26px, 8vw, 35px);
        line-height: 1.2;
    }

    .rideshare-service-page .rideshare-heading::before,
    .rideshare-service-page .rideshare-heading::after {
        height: 4px;
        width: 46%;
    }

    .rideshare-service-page .rideshare-heading::before {
        left: 0;
        bottom: 14px;
    }

    .rideshare-service-page .rideshare-heading::after {
        left: 25%;
        bottom: 0;
    }

    .rideshare-service-page .rideshare-hero__inner {
        padding-block: 60px 40px;
    }

    .rideshare-service-page .rideshare-hero__content h1 {
        font-size: clamp(31px, 9vw, 43px);
    }

    .rideshare-service-page .rideshare-hero__content p {
        margin-top: 20px;
    }

    .rideshare-service-page .rideshare-hero__orange-strip {
        right: 4%;
        width: 35%;
    }

    .rideshare-service-page .rideshare-framed-image {
        min-height: 0;
        padding: 16px;
    }

    .rideshare-service-page .rideshare-framed-image img {
        height: clamp(340px, 100vw, 470px);
    }

    .rideshare-service-page .rideshare-vehicle-showcase {
        min-height: 300px;
    }

    .rideshare-service-page .rideshare-section-header {
        margin-bottom: 32px;
    }

    .rideshare-service-page .rideshare-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .rideshare-service-page .rideshare-table {
        min-width: 0;
        display: block;
    }

    .rideshare-service-page .rideshare-table thead {
        display: none;
    }

    .rideshare-service-page .rideshare-table tbody,
    .rideshare-service-page .rideshare-table tr,
    .rideshare-service-page .rideshare-table td {
        display: block;
        width: 100%;
    }

    .rideshare-service-page .rideshare-table tbody {
        display: grid;
        gap: 18px;
    }

    .rideshare-service-page .rideshare-table tbody tr {
        overflow: hidden;
        border: 1px solid rgba(0, 91, 170, 0.16);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(25, 61, 86, 0.09);
    }

    .rideshare-service-page .rideshare-table tbody td,
    .rideshare-service-page .rideshare-table tbody tr:nth-child(even) td {
        display: grid;
        grid-template-columns: minmax(125px, 42%) minmax(0, 58%);
        gap: 12px;
        padding: 13px 16px;
        border: 0;
        border-bottom: 1px solid #e2e8ed;
        background: #ffffff;
    }

    .rideshare-service-page .rideshare-table tbody td:last-child {
        border-bottom: 0;
    }

    .rideshare-service-page .rideshare-table tbody td::before {
        content: attr(data-label);
        color: var(--secondary-color);
        font-family: "Quantico", sans-serif;
        font-weight: 700;
    }

    .rideshare-service-page .rideshare-table__vehicle {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .rideshare-service-page .rideshare-table__vehicle img {
        width: 100%;
        height: 86px;
        flex-basis: auto;
    }

    .rideshare-service-page .rideshare-step {
        padding: 28px 22px;
    }

    .rideshare-service-page .rideshare-location__inner {
        padding-block: 48px;
    }

    .rideshare-service-page .rideshare-location__content h2 {
        font-size: clamp(27px, 8vw, 36px);
    }

    .rideshare-service-page .rideshare-faq__item button {
        min-height: 62px;
        padding: 16px 17px;
        font-size: 15px;
    }

    .rideshare-service-page .rideshare-faq__answer {
        padding: 0 17px 18px;
    }

    .rideshare-service-page .rideshare-final-cta {
        padding: 38px 0;
    }
}

/* Small mobile */

@media (max-width: 480px) {
    .rideshare-service-page .rideshare-shell {
        width: min(calc(100% - 30px), 1120px);
    }

    .rideshare-service-page .rideshare-hero__content h1 {
        font-size: 30px;
    }

    .rideshare-service-page .rideshare-button {
        width: 100%;
    }

    .rideshare-service-page .rideshare-framed-image img {
        height: 350px;
    }

    .rideshare-service-page .rideshare-table tbody td,
    .rideshare-service-page .rideshare-table tbody tr:nth-child(even) td {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .rideshare-service-page .rideshare-table__vehicle img {
        width: min(100%, 220px);
    }
}































   /* =========================================================
   DIDI SERVICE PAGE ADDITIONS
========================================================= */

.rideshare-service-page .rideshare-vehicle-list--three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1020px;
    margin-inline: auto;
    margin-top: 42px;
    gap: 18px;
}

.rideshare-service-page .rideshare-vehicle-list--three .rideshare-vehicle-card {
    flex: 0 1 calc((100% - 36px) / 3);
    width: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
}

.rideshare-service-page .rideshare-final-cta__heading {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Quantico", sans-serif;
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.rideshare-service-page .rideshare-location__content .rideshare-button {
    margin-top: 26px;
}

@media (max-width: 991px) {
    .rideshare-service-page .rideshare-vehicle-list--three {
        gap: 16px;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card {
        flex: 0 1 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 767px) {
    .rideshare-service-page .rideshare-vehicle-list--three {
        max-width: 390px;
        margin-top: 32px;
        gap: 14px;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card {
        flex: 0 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .rideshare-service-page .rideshare-final-cta__heading {
        font-size: clamp(25px, 8vw, 34px);
    }
}




















    /* =========================================================
   UBER SERVICE VEHICLE LIST
========================================================= */

.rideshare-service-page .rideshare-vehicle-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    margin-top: 42px;
}

.rideshare-service-page .rideshare-vehicle-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 91, 170, 0.1);
    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
    box-sizing: border-box;
    flex: 0 1 calc((100% - 54px) / 4);
    width: calc((100% - 54px) / 4);
    max-width: calc((100% - 54px) / 4);
}

.rideshare-service-page .rideshare-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 91, 170, 0.16);
}

.rideshare-service-page .rideshare-vehicle-card__image {
    position: relative;
    height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #f8fbff 0%,
            #e6f2fb 100%
        );
}

.rideshare-service-page .rideshare-vehicle-card__image::before {
    content: "";
    position: absolute;
    inset: 18px;
    background-image: url("../../../images/textures/irregular-splash-orange.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.75;
}

.rideshare-service-page .rideshare-vehicle-card__image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 110%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 250ms ease;
}

.rideshare-service-page
.rideshare-vehicle-card:hover
.rideshare-vehicle-card__image img {
    transform: scale(1.06);
}

.rideshare-service-page .rideshare-vehicle-card__content {
    padding: 20px 17px 23px;
}

.rideshare-service-page .rideshare-vehicle-card__content h3 {
    margin: 0 0 12px;
    color: var(--secondary-color);
    font-family: "Quantico", sans-serif;
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 700;
    line-height: 1.35;
}

.rideshare-service-page .rideshare-vehicle-card__content p {
    font-size: 13px;
    line-height: 1.55;
}

.rideshare-service-page .rideshare-vehicle-card__content p + p {
    margin-top: 9px;
    color: #111111;
    font-weight: 500;
}

.rideshare-service-page .rideshare-copy--vehicle-description {
    max-width: 980px;
    margin-top: 35px;
}

@media (max-width: 1199px) {
    .rideshare-service-page .rideshare-vehicle-list {
        gap: 16px;
    }

    .rideshare-service-page .rideshare-vehicle-card {
        flex: 0 1 calc((100% - 32px) / 3);
        width: calc((100% - 32px) / 3);
        max-width: calc((100% - 32px) / 3);
    }
}

@media (max-width: 767px) {
    .rideshare-service-page .rideshare-vehicle-list {
        gap: 15px;
        margin-top: 32px;
    }

    .rideshare-service-page .rideshare-vehicle-card {
        flex: 0 1 calc((100% - 15px) / 2);
        width: calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
    }

    .rideshare-service-page .rideshare-vehicle-card__image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .rideshare-service-page .rideshare-vehicle-list {
        gap: 14px;
    }

    .rideshare-service-page .rideshare-vehicle-card {
        flex: 0 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .rideshare-service-page .rideshare-vehicle-card {
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .rideshare-service-page .rideshare-vehicle-card__image {
        height: 185px;
    }
}



















/* =========================================================
   AIRPORT TRANSFER SERVICE PAGE ADDITIONS
========================================================= */

.rideshare-service-page .airport-final-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 27px;
    padding: 12px 26px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: #ffffff !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 250ms ease,
        border-color 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.rideshare-service-page .airport-final-button:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .rideshare-service-page .airport-final-button {
        width: 100%;
        max-width: 350px;
    }
}






.rideshare-service-page .rideshare-vehicle-list--three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1020px;
    margin-inline: auto;
    margin-top: 42px;
    gap: 18px;
}

.rideshare-service-page .rideshare-vehicle-list--three .rideshare-vehicle-card {
    flex: 0 1 calc((100% - 36px) / 3);
    width: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
}

.rideshare-service-page .rideshare-final-cta__heading {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Quantico", sans-serif;
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .rideshare-service-page .rideshare-vehicle-list--three {
        gap: 16px;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card {
        flex: 0 1 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 767px) {
    .rideshare-service-page .rideshare-vehicle-list--three {
        max-width: 390px;
        margin-top: 32px;
        gap: 14px;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card {
        flex: 0 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card:last-child {
        grid-column: auto;
        width: 100%;
    }
}














/* =========================================================
   HYBRID CAR RENTAL PAGE
========================================================= */

.rideshare-service-page .hybrid-vehicle-card__price {
    margin-bottom: 9px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Included section */

.rideshare-service-page .hybrid-included-section {
    position: relative;
    overflow: hidden;
    padding: var(--sozo-section-pad-y) 0;
    background-color: var(--secondary-color);
}

.rideshare-service-page .hybrid-included-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 330px;
    height: 330px;
    border: 55px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rideshare-service-page .hybrid-included-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -130px;
    width: 350px;
    height: 350px;
    border: 65px solid rgba(250, 170, 45, 0.14);
    border-radius: 50%;
}

.rideshare-service-page .hybrid-included-section .rideshare-shell {
    position: relative;
    z-index: 2;
}

.rideshare-service-page .hybrid-included-section__header {
    margin-bottom: 42px;
    text-align: center;
}

.rideshare-service-page
.hybrid-included-section__header
.rideshare-heading {
    color: #ffffff;
}

.rideshare-service-page
.hybrid-included-section__header
.rideshare-heading::before {
    background-color: #ffffff;
}

.rideshare-service-page
.hybrid-included-section__header
.rideshare-heading::after {
    background-color: var(--primary-color);
}

.rideshare-service-page .hybrid-included-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.rideshare-service-page .hybrid-included-card {
    min-width: 0;
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    text-align: center;
    backdrop-filter: blur(5px);
    transition:
        transform 250ms ease,
        background-color 250ms ease,
        border-color 250ms ease;
}

.rideshare-service-page .hybrid-included-card:hover {
    transform: translateY(-5px);
    border-color: rgba(250, 170, 45, 0.65);
    background-color: rgba(255, 255, 255, 0.13);
}

.rideshare-service-page .hybrid-included-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 25px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.17);
}

.rideshare-service-page .hybrid-included-card__content h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-family: "Quantico", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.rideshare-service-page .hybrid-included-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

/* Three vehicle layout */

.rideshare-service-page .rideshare-vehicle-list--three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1020px;
    margin-inline: auto;
    margin-top: 42px;
    gap: 18px;
}

.rideshare-service-page .rideshare-vehicle-list--three .rideshare-vehicle-card {
    flex: 0 1 calc((100% - 36px) / 3);
    width: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .rideshare-service-page .hybrid-included-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rideshare-service-page .hybrid-included-card:nth-child(4),
    .rideshare-service-page .hybrid-included-card:nth-child(5) {
        width: calc(150% + 9px);
    }
}

@media (max-width: 991px) {
    .rideshare-service-page .rideshare-vehicle-list--three {
        gap: 16px;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card {
        flex: 0 1 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }

    .rideshare-service-page .hybrid-included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rideshare-service-page .hybrid-included-card:nth-child(4),
    .rideshare-service-page .hybrid-included-card:nth-child(5) {
        width: auto;
    }

    .rideshare-service-page .hybrid-included-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }
}

@media (max-width: 767px) {
    .rideshare-service-page .rideshare-vehicle-list--three {
        max-width: 390px;
        margin-top: 32px;
        gap: 14px;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card {
        flex: 0 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .rideshare-service-page
    .rideshare-vehicle-list--three
    .rideshare-vehicle-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .rideshare-service-page .hybrid-included-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .rideshare-service-page .hybrid-included-card:last-child {
        grid-column: auto;
        width: 100%;
    }
}









/* =========================================================
   LONG TERM CAR RENTAL PAGE
========================================================= */

.rideshare-service-page.long-term-car-rental-page
.long-term-included-section {
    background:
        linear-gradient(
            135deg,
            var(--secondary-color) 0%,
            #004987 100%
        );
}

.rideshare-service-page.long-term-car-rental-page
.rideshare-service-hero__badge {
    min-width: 210px;
}

@media (max-width: 767px) {
    .rideshare-service-page.long-term-car-rental-page
    .rideshare-service-hero__badge {
        min-width: 180px;
    }
}






/* =========================================================
   SHARED INCLUDED SECTION
========================================================= */

.rideshare-service-page .hybrid-included-section {
    position: relative;
    overflow: hidden;
    padding: var(--sozo-section-pad-y) 0;
    background-color: var(--secondary-color);
}

.rideshare-service-page .hybrid-included-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 330px;
    height: 330px;
    border: 55px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rideshare-service-page .hybrid-included-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -130px;
    width: 350px;
    height: 350px;
    border: 65px solid rgba(250, 170, 45, 0.14);
    border-radius: 50%;
}

.rideshare-service-page .hybrid-included-section .rideshare-shell {
    position: relative;
    z-index: 2;
}

.rideshare-service-page .hybrid-included-section__header {
    margin-bottom: 42px;
    text-align: center;
}

.rideshare-service-page
.hybrid-included-section__header
.rideshare-heading {
    color: #ffffff;
}

.rideshare-service-page
.hybrid-included-section__header
.rideshare-heading::before {
    background-color: #ffffff;
}

.rideshare-service-page
.hybrid-included-section__header
.rideshare-heading::after {
    background-color: var(--primary-color);
}

.rideshare-service-page .hybrid-included-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rideshare-service-page .hybrid-included-card {
    min-width: 0;
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    text-align: center;
    backdrop-filter: blur(5px);
    transition:
        transform 250ms ease,
        background-color 250ms ease,
        border-color 250ms ease;
}

.rideshare-service-page .hybrid-included-card:hover {
    transform: translateY(-5px);
    border-color: rgba(250, 170, 45, 0.65);
    background-color: rgba(255, 255, 255, 0.13);
}

.rideshare-service-page .hybrid-included-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 25px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.17);
}

.rideshare-service-page .hybrid-included-card__content h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-family: "Quantico", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.rideshare-service-page .hybrid-included-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .rideshare-service-page .hybrid-included-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .rideshare-service-page .hybrid-included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rideshare-service-page .hybrid-included-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }
}

@media (max-width: 767px) {
    .rideshare-service-page .hybrid-included-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .rideshare-service-page .hybrid-included-card:last-child {
        grid-column: auto;
        width: 100%;
    }
}