/* =========================================================
   MARVALET
   SERVICES PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.services-page {
    background: #080808;
    color: #ffffff;
}


.services-container {
    width: min(1450px, 94%);
    margin: 0 auto;
}


/* =========================================================
   HERO / PAGE HEADING
========================================================= */

.services-hero {
    padding: 65px 0 45px;

    background:
        linear-gradient(
            180deg,
            #090909 0%,
            #080808 100%
        );

    border-bottom: 1px solid #202020;
}


.services-hero .services-container {
    text-align: center;
}


.services-eyebrow {
    margin: 0 0 8px;

    color: #858585;

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}


.services-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2.8rem,
            5vw,
            5rem
        );

    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -1.8px;

    text-transform: uppercase;
}


.services-intro {
    max-width: 650px;

    margin: 18px auto 0;

    color: #999999;

    font-size: 0.95rem;

    line-height: 1.7;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    padding: 55px 0 70px;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 20px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    min-width: 0;

    display: grid;

    grid-template-columns:
        minmax(220px, 41%)
        minmax(0, 1fr);

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #101010 0%,
            #0b0b0b 100%
        );

    border: 1px solid #303030;

    border-radius: 3px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.service-card:hover {
    border-color: #555555;

    background:
        linear-gradient(
            145deg,
            #121212 0%,
            #0c0c0c 100%
        );
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    position: relative;

    min-height: 100%;

    overflow: hidden;

    background: #111111;
}


.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.35s ease;
}


.service-card:hover .service-image img {
    transform: scale(1.025);
}


/* =========================================================
   POPULAR BADGE
========================================================= */

.service-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    padding: 6px 9px;

    background: #ffffff;

    border-radius: 2px;

    color: #080808;

    font-size: 0.55rem;

    font-weight: 900;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-content {
    min-width: 0;

    padding: 28px;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   SERVICE TOP
========================================================= */

.service-top {
    margin-bottom: 18px;
}


.service-title-area {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}


/* =========================================================
   ICON
========================================================= */

.service-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #484848;

    border-radius: 50%;

    color: #ffffff;

    font-size: 1rem;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-title-area h2 {
    margin: 1px 0 5px;

    color: #ffffff;

    font-size: 1.05rem;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.2px;

    text-transform: uppercase;
}


/* =========================================================
   DURATION
========================================================= */

.service-duration {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #b7b7b7;

    font-size: 0.7rem;
}


.service-duration i {
    color: #ffffff;

    font-size: 0.78rem;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.service-description {
    margin: 0 0 23px;

    color: #b3b3b3;

    font-size: 0.86rem;

    line-height: 1.7;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.service-section-label {
    margin: 0 0 10px;

    color: #707070;

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   VEHICLE PRICING SECTION
========================================================= */

.service-pricing-section {
    margin-bottom: 23px;
}


/* =========================================================
   PRICE GRID
========================================================= */

.service-pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    border: 1px solid #313131;

    background: #0b0b0b;
}


/* =========================================================
   INDIVIDUAL PRICE
========================================================= */

.service-price-item {
    min-width: 0;

    padding: 11px 8px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 3px;

    border-right: 1px solid #313131;

    text-align: center;
}


.service-price-item:last-child {
    border-right: none;
}


.vehicle-type {
    color: #757575;

    font-size: 0.47rem;

    font-weight: 800;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


.vehicle-price {
    color: #ffffff;

    font-size: 1.05rem;

    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   FLEXIBLE PRICE RANGE
========================================================= */

.service-range-section {
    margin-bottom: 23px;
}


.service-range-price {
    padding: 15px 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: #0b0b0b;

    border: 1px solid #313131;
}


.service-range-price > span {
    color: #7e7e7e;

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.service-range-price strong {
    color: #ffffff;

    font-size: 1.25rem;

    font-weight: 800;
}


.price-dash {
    color: #747474;
}


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

.service-features-section {
    margin-bottom: 24px;
}


.service-features {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        8px
        15px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.service-features li {
    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 7px;

    color: #b0b0b0;

    font-size: 0.74rem;

    line-height: 1.45;
}


.service-features li i {
    flex-shrink: 0;

    margin-top: 2px;

    color: #ffffff;

    font-size: 0.8rem;
}


.service-features li span {
    min-width: 0;
}


/* =========================================================
   ADDITIONAL NOTE
========================================================= */

.service-note {
    margin-bottom: 23px;

    padding: 12px 13px;

    display: flex;

    align-items: flex-start;

    gap: 9px;

    background: #0b0b0b;

    border-left: 2px solid #777777;
}


.service-note i {
    flex-shrink: 0;

    margin-top: 3px;

    color: #c8c8c8;

    font-size: 0.8rem;
}


.service-note p {
    margin: 0;

    color: #858585;

    font-size: 0.69rem;

    line-height: 1.55;
}


/* =========================================================
   SERVICE CARD FOOTER
========================================================= */

.service-card-footer {
    margin-top: auto;

    padding-top: 5px;
}


/* =========================================================
   SERVICE QUOTE BUTTON
========================================================= */

.service-quote-button {
    width: 100%;

    min-height: 48px;

    padding: 12px 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: #ffffff;

    border: 1px solid #ffffff;

    border-radius: 2px;

    color: #080808;

    font-size: 0.66rem;

    font-weight: 900;

    letter-spacing: 0.9px;

    text-transform: uppercase;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.service-quote-button span,
.service-quote-button i {
    color: #080808;
}


.service-quote-button:hover {
    background: #e9e9e9;

    border-color: #e9e9e9;

    color: #080808;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.services-empty {
    grid-column: 1 / -1;

    padding: 70px 25px;

    background: #0d0d0d;

    border: 1px solid #303030;

    text-align: center;
}


.services-empty > i {
    margin-bottom: 18px;

    display: block;

    color: #ffffff;

    font-size: 2rem;
}


.services-empty h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 1.6rem;

    font-weight: 800;

    text-transform: uppercase;
}


.services-empty p {
    max-width: 500px;

    margin: 0 auto 25px;

    color: #8d8d8d;

    font-size: 0.85rem;
}


.services-empty-button {
    min-height: 46px;

    padding: 12px 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #080808;

    font-size: 0.67rem;

    font-weight: 800;

    letter-spacing: 0.8px;
}


/* =========================================================
   INFORMATION STRIP
========================================================= */

.services-information {
    padding: 0 0 70px;
}


.services-information-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    border: 1px solid #303030;

    background: #0c0c0c;
}


/* =========================================================
   INFORMATION ITEM
========================================================= */

.service-information-item {
    min-height: 120px;

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 17px;

    border-right: 1px solid #303030;
}


.service-information-item:last-child {
    border-right: none;
}


.service-information-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #4a4a4a;

    border-radius: 50%;

    color: #ffffff;

    font-size: 1rem;
}


.service-information-item h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 0.77rem;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


.service-information-item p {
    margin: 0;

    color: #828282;

    font-size: 0.73rem;

    line-height: 1.5;
}


/* =========================================================
   FINAL CTA SECTION
========================================================= */

.services-final-cta {
    padding: 0 0 70px;
}


/* =========================================================
   CTA BOX
========================================================= */

.services-cta-box {
    min-height: 145px;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    background:
        linear-gradient(
            110deg,
            #0d0d0d 0%,
            #161616 55%,
            #0d0d0d 100%
        );

    border: 1px solid #353535;

    border-radius: 3px;
}


/* =========================================================
   CTA COPY
========================================================= */

.services-cta-copy {
    max-width: 700px;
}


.services-cta-eyebrow {
    margin: 0 0 5px;

    color: #777777;

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.services-cta-copy h2 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size:
        clamp(
            1.5rem,
            2.5vw,
            2.1rem
        );

    font-weight: 800;

    line-height: 1.1;

    text-transform: uppercase;
}


.services-cta-copy > p:last-child {
    margin: 0;

    color: #8d8d8d;

    font-size: 0.8rem;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.services-cta-button {
    min-width: 210px;
    min-height: 54px;

    flex-shrink: 0;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background: #ffffff;

    border: 1px solid #ffffff;

    border-radius: 2px;

    color: #080808;

    font-size: 0.69rem;

    font-weight: 900;

    letter-spacing: 0.9px;

    text-transform: uppercase;
}


.services-cta-button span,
.services-cta-button i {
    color: #080808;
}


.services-cta-button:hover {
    background: #e9e9e9;

    border-color: #e9e9e9;

    color: #080808;
}


/* =========================================================
   DESKTOP - NARROWER
========================================================= */

@media (max-width: 1250px) {

    .services-container {
        width: 96%;
    }


    .service-card {
        grid-template-columns:
            38%
            minmax(0, 1fr);
    }


    .service-content {
        padding: 23px;
    }


    .service-pricing-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .service-price-item {
        border-bottom: 1px solid #313131;
    }


    .service-price-item:nth-child(2n) {
        border-right: none;
    }


    .service-price-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }


    .service-features {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 950px) {

    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        grid-template-columns:
            40%
            minmax(0, 1fr);
    }


    .service-image {
        min-height: 440px;
    }


    .service-pricing-grid {
        grid-template-columns:
            repeat(
                4,
                1fr
            );
    }


    .service-price-item {
        border-bottom: none;
    }


    .service-price-item:nth-child(2n) {
        border-right: 1px solid #313131;
    }


    .service-price-item:last-child {
        border-right: none;
    }


    .service-features {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .services-information-grid {
        grid-template-columns: 1fr;
    }


    .service-information-item {
        border-right: none;

        border-bottom: 1px solid #303030;
    }


    .service-information-item:last-child {
        border-bottom: none;
    }

}


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

@media (max-width: 700px) {

    .services-hero {
        padding: 45px 0 35px;
    }


    .services-container {
        width: 92%;
    }


    .services-hero h1 {
        font-size: 2.8rem;
    }


    .services-intro {
        font-size: 0.84rem;
    }


    .services-section {
        padding: 35px 0 50px;
    }


    /* =====================================================
       CARD
    ====================================================== */

    .service-card {
        display: block;
    }


    .service-image {
        height: 260px;
        min-height: 0;
    }


    .service-content {
        padding: 22px 18px;
    }


    .service-icon {
        width: 40px;
        height: 40px;
    }


    .service-title-area h2 {
        font-size: 0.97rem;
    }


    .service-description {
        font-size: 0.8rem;
    }


    /* =====================================================
       PRICING
    ====================================================== */

    .service-pricing-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .service-price-item {
        border-bottom: 1px solid #313131;
    }


    .service-price-item:nth-child(2n) {
        border-right: none;
    }


    .service-price-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }


    .vehicle-price {
        font-size: 1rem;
    }


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

    .service-features {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       INFO STRIP
    ====================================================== */

    .services-information {
        padding-bottom: 50px;
    }


    .service-information-item {
        min-height: 105px;

        padding: 20px;
    }


    /* =====================================================
       CTA
    ====================================================== */

    .services-final-cta {
        padding-bottom: 50px;
    }


    .services-cta-box {
        padding: 25px 20px;

        align-items: stretch;

        flex-direction: column;
    }


    .services-cta-button {
        width: 100%;
    }

}


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

@media (max-width: 430px) {

    .services-hero h1 {
        font-size: 2.4rem;
    }


    .service-image {
        height: 225px;
    }


    .service-content {
        padding: 19px 15px;
    }


    .service-title-area {
        gap: 10px;
    }


    .service-icon {
        width: 36px;
        height: 36px;

        font-size: 0.85rem;
    }


    .service-title-area h2 {
        font-size: 0.88rem;
    }


    .service-duration {
        font-size: 0.63rem;
    }


    .vehicle-type {
        font-size: 0.43rem;
    }


    .vehicle-price {
        font-size: 0.94rem;
    }


    .service-features li {
        font-size: 0.7rem;
    }


    .services-cta-copy h2 {
        font-size: 1.35rem;
    }

}