:root {
    --theme-color: #FF9000;
    --theme-light: #fff0c6;
    --primary-color: #FF9000;
    --secondary-color: #1a192c;
    --body-font: "Poppins", sans-serif;
    --title-font: "Outfit", sans-serif;
    --transition: .3s;
    
}

a{
    text-decoration: none;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

body {
    position: relative;
    background: white;
    font-size: 15px;
    font-family: var(--body-font);
    /* FIX: was var(--main-font) which is never defined; corrected to var(--body-font) */
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--title-font);
}

.clrblack {
    color: black !important;
}

.bg_light_creem{
background: linear-gradient(90deg,rgba(255, 248, 230, 1) 0%, rgba(255, 249, 207, 1) 35%, rgba(242, 222, 179, 1) 100%) !important;

}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');


.mmc-about {
    --about-ink: #55546a;
    --about-card: #fffaf0;
    padding: 110px 0 100px;
    background: #fff;
    overflow: hidden;
}

.mmc-about .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-about__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
}

/* ---- visual column ---------------------------------------------- */

.mmc-about__visual {
    position: relative;
    padding: 18px 28px 40px 0;
}

.mmc-about__frame {
    position: absolute;
    top: 0;
    left: 28px;
    right: 0;
    bottom: 22px;
    background: var(--theme-light);
    border-radius: 20px;
    z-index: 0;
}

.mmc-about__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 48px -20px rgba(26, 25, 44, 0.35);
}

.mmc-about__badge {
    position: absolute;
    z-index: 2;
    top: 40px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 24px -10px rgba(26, 25, 44, 0.5);
}

.mmc-about__badge svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--theme-color);
}

.mmc-about__badge-num {
    display: block;
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.mmc-about__badge-label {
    display: block;
    font-family: var(--body-font);
    font-size: 11px;
    color: #d8d7e6;
    line-height: 1.2;
}

.mmc-about__floatcard {
    position: absolute;
    z-index: 2;
    left: -12px;
    bottom: 0;
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 20px 40px -18px rgba(26, 25, 44, 0.4);
    text-align: center;
    border-top: 4px solid var(--theme-color);
}

.mmc-about__floatcard-num {
    display: block;
    font-family: var(--title-font);
    font-size: 30px;
    font-weight: 800;
    color: var(--theme-color);
    line-height: 1;
}

.mmc-about__floatcard-label {
    display: block;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 6px;
    line-height: 1.35;
}

/* ---- copy column ---------------------------------------------- */

.mmc-about__eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.mmc-about__title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
    margin: 0 0 20px;
}

.mmc-about__title span {
    color: var(--theme-color);
}

.mmc-about__lead {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.75;
    color: var(--about-ink);
    max-width: 480px;
    margin: 0 0 32px;
}

.mmc-about__features {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mmc-about__features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mmc-about__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--about-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid #9d9d9d;
}

.mmc-about__feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--theme-color);
}

.mmc-about__features li:hover .mmc-about__feature-icon {
    background: var(--theme-color);
    border-color: #000;
}

.mmc-about__features li:hover .mmc-about__feature-icon svg {
    color: #fff;
}

.mmc-about__features strong {
    display: block;
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.mmc-about__features p {
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.6;
    color: var(--about-ink);
    margin: 0;
}

.mmc-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--theme-color);
    padding: 15px 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.mmc-about__cta svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.mmc-about__cta:hover {
    background: var(--secondary-color);
}

.mmc-about__cta:hover svg {
    transform: translateX(4px);
}

/* ---- route / signature strip ---------------------------------- */

.mmc-about__route {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    margin-top: 90px;
    padding: 0 8px 40px;
    display: none;
}

.mmc-about__route-track {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 66px;
    height: 0;
    border-top: 3px dashed var(--theme-light);
    filter: saturate(1.4);
}

.mmc-about__stop {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateY(calc(var(--lift, 0px) * -1));
}

.mmc-about__stop-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--theme-color);
    box-sizing: border-box;
}

.mmc-about__stop-dot--end {
    background: var(--theme-color);
    width: 20px;
    height: 20px;
}

.mmc-about__stop-label {
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
}

/* ---- responsive -------------------------------------------------- */

@media (max-width: 900px) {
    .mmc-about__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .mmc-about__visual {
        padding: 18px 20px 40px 0;
    }

    .mmc-about__route {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 64px;
        padding: 8px 8px 8px 12px;
        gap: 28px;
    }

    .mmc-about__route-track {
        top: 0;
        bottom: 0;
        left: 7px;
        right: auto;
        width: 0;
        height: auto;
        border-top: none;
        border-left: 3px dashed var(--theme-light);
    }

    .mmc-about__stop {
        flex-direction: row;
        transform: none;
    }
}

@media (max-width: 560px) {
    .mmc-about {
        padding: 64px 0;
    }

    .mmc-about__img {
        height: 320px;
    }

    .mmc-about__badge {
        top: 20px;
        padding: 10px 14px;
    }

    .mmc-about__floatcard {
        left: 0;
        padding: 14px 18px;
    }
}
/* ================================================================
WHY CHOOSE US  —  mmc-why  v1
Uses the site's existing tokens (--theme-color, --theme-light,
--secondary-color, --body-font, --title-font, --transition).
Adds two supporting tokens, scoped to this section only.
================================================================ */

.mmc-why {
    --why-ink: #55546a;
    --why-card: #fffaf0;
    padding: 100px 0;
    background: #fff;
}

.mmc-why .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-why__head {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}

.mmc-why__eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.mmc-why__title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin: 0 0 18px;
}

.mmc-why__title span {
    color: var(--theme-color);
}

.mmc-why__lead {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--why-ink);
    margin: 0;
}

/* ---- bento grid ---------------------------------------------- */

.mmc-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas:
        "a a b"
        "a a c"
        "d e f";
    gap: 20px;
}

.mmc-why__card:nth-child(1) { grid-area: a; }
.mmc-why__card:nth-child(2) { grid-area: b; }
.mmc-why__card:nth-child(3) { grid-area: c; }
.mmc-why__card:nth-child(4) { grid-area: d; }
.mmc-why__card:nth-child(5) { grid-area: e; }
.mmc-why__card:nth-child(6) { grid-area: f; }

.mmc-why__card {
    position: relative;
    background: var(--why-card);
    border-radius: 18px;
    padding: 28px;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid #ddd;
}

.mmc-why__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -22px rgba(26, 25, 44, 0.35);
}

.mmc-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    color: var(--theme-color);
    font-size: 20px;
    margin-bottom: 18px;
    transition: var(--transition);
    border: 1px solid var(--theme-color);
}

.mmc-why__card:hover .mmc-why__icon {
    background: var(--theme-color);
    color: #fff;
}

.mmc-why__card h3 {
    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 8px;
}

.mmc-why__card p {
    font-family: var(--body-font);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--why-ink);
    margin: 0;
}

/* ---- featured card ---------------------------------------------- */

.mmc-why__card--feature {
    background: var(--secondary-color);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mmc-why__card--feature::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--theme-color);
    opacity: .12;
}

.mmc-why__card--feature .mmc-why__icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--theme-color);
}

.mmc-why__card--feature:hover .mmc-why__icon {
    background: var(--theme-color);
    color: #fff;
}

.mmc-why__stat {
    font-family: var(--title-font);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.mmc-why__card--feature h3 {
    color: #fff;
    font-size: 20px;
}

.mmc-why__card--feature p {
    color: #b9b8c9;
    font-size: 14px;
}

/* ---- responsive -------------------------------------------------- */

@media (max-width: 900px) {
    .mmc-why__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "a a"
            "b c"
            "d e"
            "f f";
    }

    .mmc-why__stat {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .mmc-why {
        padding: 64px 0;
    }

    .mmc-why__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e"
            "f";
    }

    .mmc-why__card--feature {
        padding: 28px;
    }
}
.mmc-cabs {
    --cabs-ink: #55546a;
    --cabs-card: #fffaf0;
    padding: 100px 0;
    background: #fff;
}

.mmc-cabs .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-cabs__head {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}

.mmc-cabs__eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.mmc-cabs__title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin: 0 0 18px;
}

.mmc-cabs__title span {
    color: var(--theme-color);
}

.mmc-cabs__lead {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--cabs-ink);
    margin: 0;
}

.mmc-cabs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.mmc-cabs__card {
    background: #fff;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.2);
}

.mmc-cabs__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px -24px rgba(26, 25, 44, 0.35);
}

.mmc-cabs__media {
    position: relative;
    background: var(--cabs-card);
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.mmc-cabs__media img {
    max-width: 88%;
    max-height: 140px;
    object-fit: contain;
    transition: var(--transition);
}

.mmc-cabs__card:hover .mmc-cabs__media img {
    transform: scale(1.06);
}

.mmc-cabs__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary-color);
    color: #fff;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

.mmc-cabs__tag i {
    color: var(--theme-color);
    font-size: 12px;
}

.mmc-cabs__body {
    padding: 15px;
}

.mmc-cabs__name {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 12px;
}

.mmc-cabs__specs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 10px;
    padding: 0;
}

.mmc-cabs__specs li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body-font);
    font-size: 12.5px;
    color: var(--cabs-ink);
}

.mmc-cabs__specs i {
    color: var(--theme-color);
    font-size: 13px;
}

.mmc-cabs__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px dashed #ece7d8;
}

.mmc-cabs__price-amount {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 800;
    color: var(--theme-color);
}

.mmc-cabs__price-unit {
    font-family: var(--body-font);
    font-size: 12px;
    color: var(--cabs-ink);
    margin-left: 3px;
}

.mmc-cabs__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--secondary-color);
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--cabs-card);
    transition: var(--transition);
    border: 1px solid #000;
}

.mmc-cabs__cta i {
    font-size: 12px;
    transition: var(--transition);
}

.mmc-cabs__cta:hover {
    background: var(--theme-color);
    color: #fff;
}

.mmc-cabs__cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 560px) {
    .mmc-cabs {
        padding: 64px 0;
    }



    .mmc-cabs__cta {
        width: 100%;
        justify-content: center;
    }
}
/* ================================================================
SERVICES  —  mmc-services  v1
Two-track layout: compact "on-demand rides" list vs "pilgrimage
circuit" cards carrying a real elevation gauge (echoes the
altitude-lift device used in mmc-about__route).
Uses the site's existing tokens only — no new global variables.
================================================================ */

.mmc-services {
    --svc-ink: #55546a;
    --svc-card: #fffaf0;
    padding: 100px 0;
    background: #fff;
}

.mmc-services .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-services__head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.mmc-services__eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.mmc-services__title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin: 0 0 18px;
}

.mmc-services__title span {
    color: var(--theme-color);
}

.mmc-services__lead {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--svc-ink);
    margin: 0;
}

.mmc-services__col-label {
    display: block;
    font-family: var(--body-font);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--secondary-color);
    opacity: .55;
    margin-bottom: 18px;
}

/* ---- overall split ------------------------------------------- */

.mmc-services__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* ---- left: on-demand rides ------------------------------------ */

.mmc-services__rides {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mmc-services__ride {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--svc-card);
    border: 1px solid #ece7d8;
    border-radius: 14px;
    padding: 16px 18px;
    transition: var(--transition);
}

.mmc-services__ride:hover {
    border-color: var(--theme-color);
    transform: translateX(4px);
    box-shadow: 0 14px 30px -18px rgba(26, 25, 44, 0.3);
}

.mmc-services__ride-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 18px;
    transition: var(--transition);
}

.mmc-services__ride:hover .mmc-services__ride-icon {
    background: var(--theme-color);
    color: #fff;
}

.mmc-services__ride-copy {
    flex: 1;
    min-width: 0;
}

.mmc-services__ride-copy strong {
    display: block;
    font-family: var(--title-font);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.mmc-services__ride-copy p {
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.5;
    color: var(--svc-ink);
    margin: 0;
}

.mmc-services__ride-arrow {
    flex-shrink: 0;
    color: var(--svc-ink);
    font-size: 13px;
    opacity: .5;
    transition: var(--transition);
}

.mmc-services__ride:hover .mmc-services__ride-arrow {
    opacity: 1;
    color: var(--theme-color);
    transform: translateX(3px);
}

/* ---- right: pilgrimage circuits -------------------------------- */

.mmc-services__peak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mmc-services__peak {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--secondary-color);
    border-radius: 18px;
    padding: 26px 24px 24px;
    overflow: hidden;
    transition: var(--transition);
}

.mmc-services__peak::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--theme-color);
    opacity: .1;
    transition: var(--transition);
}

.mmc-services__peak:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px -22px rgba(26, 25, 44, 0.45);
}

.mmc-services__peak:hover::before {
    opacity: .18;
}

.mmc-services__peak-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* the altimeter — fill height encodes real elevation, scaled
   between Gangotri (~3,100m, lowest Char Dham shrine) and
   Kedarnath (3,583m, the highest) */
.mmc-services__peak-gauge {
    position: relative;
    width: 6px;
    height: 34px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

.mmc-services__peak-gauge::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--fill, 50%);
    border-radius: 3px;
    background: var(--theme-color);
}

.mmc-services__peak-elev {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
    color: #d8d7e6;
}

.mmc-services__peak h3 {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    position: relative;
}

.mmc-services__peak p {
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.6;
    color: #b9b8c9;
    margin: 0 0 20px;
    position: relative;
    flex: 1;
}

.mmc-services__peak-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 13px;
    color: var(--theme-color);
}

.mmc-services__peak-cta i {
    font-size: 12px;
    transition: var(--transition);
}

.mmc-services__peak:hover .mmc-services__peak-cta i {
    transform: translateX(4px);
}

/* ---- responsive -------------------------------------------------- */

@media (max-width: 980px) {
    .mmc-services__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 640px) {
    .mmc-services {
        padding: 64px 0;
    }

    .mmc-services__peak-grid {
        grid-template-columns: 1fr;
    }

    .mmc-services__ride {
        padding: 14px;
    }
}
/* ================================================================
ROUTES  —  mmc-routes  v1
3-per-row cards, image on one side / copy on the other, alternating
per card (even = image left, odd = image right via --reverse).
================================================================ */

.mmc-routes {
    --rt-ink: #55546a;
    padding: 100px 0;
}

.mmc-routes .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-routes__head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.mmc-routes__eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.mmc-routes__title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin: 0 0 18px;
}

.mmc-routes__title span {
    color: var(--theme-color);
}

.mmc-routes__lead {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--rt-ink);
    margin: 0;
}

/* ---- grid: 3 per row ------------------------------------------- */

.mmc-routes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.mmc-routes__card {
        display: flex;
    flex-direction: column;
    background: #fffaf0;
    border: 1px solid #a2a2a2;
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.5);
}



.mmc-routes__media {
    position: relative;
    margin: 10px 0 10px 10px;
    align-items: center;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 14px;
}

.mmc-routes__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mmc-routes__card:hover .mmc-routes__media img {
    transform: scale(1.06);
}

.mmc-routes__body {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1;
}

.mmc-routes__title-sm {
    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
}

.mmc-routes__title-sm a {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mmc-routes__title-sm a:hover {
    color: var(--theme-color);
}

.mmc-routes__title-sm i {
    font-size: 12px;
    color: var(--theme-color);
}

.mmc-routes__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 12px;
    padding: 0;
}

.mmc-routes__meta li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body-font);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--rt-ink);
}

.mmc-routes__meta i {
    color: var(--theme-color);
    font-size: 13px;
}

.mmc-routes__desc {
    font-family: var(--body-font);
    font-size: 13.5px;
    line-height: 1.3;
    color: #3a3a3a;
    margin: 0 0 20px;
    flex: 1;
    letter-spacing: -0.02em;
}

/* ---- three action buttons --------------------------------------- */

.mmc-routes__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mmc-routes__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 12px;
    padding: 10px 6px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    width: 100%;
}

.mmc-routes__btn i {
    font-size: 13px;
}

.mmc-routes__btn--primary {
    background: var(--secondary-color);
    color: #fff;
}

.mmc-routes__btn--primary:hover {
    background: var(--theme-color);
}

.mmc-routes__btn--call {
    
    background: var(--theme-color);
    color: #fff;
    border: 1px solid var(--theme-color);
}

.mmc-routes__btn--call:hover {
    
    background: var(--theme-light);
    color: var(--secondary-color);
}

.mmc-routes__btn--whatsapp {
        background: #1a8a3f;
    border: 1px solid #05822c;
    color: #fff;
}

.mmc-routes__btn--whatsapp:hover {
    background: #e9f9ee;
    color: #1a8a3f;
}

/* ---- image always on the left, data always on the right ---------- */

@media (min-width: 981px) {
    .mmc-routes__card {
        flex-direction: row;
    }

    .mmc-routes__media {
        width: 35%;
    }

    .mmc-routes__body {
        width: 60%;
    }
}

/* ---- responsive -------------------------------------------------- */

@media (max-width: 980px) {
    .mmc-routes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .mmc-routes {
        padding: 64px 0;
    }

    .mmc-routes__grid {
        grid-template-columns: 1fr;
    }

    .mmc-routes__btn span {
        display: none;
    }
}
/* ================================================================
APP DOWNLOAD  —  mmc-appdl  v1
Copy on the left, layered illustration on the right (blob + dotted
texture + skyline + cloud behind two phone mockups and a taxi cutout).
All decorative shapes are CSS/SVG — only the phones, taxi, and store
badges are real images, so you can swap those srcs freely.
================================================================ */

.mmc-appdl {
    --appdl-ink: #55546a;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.mmc-appdl .container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-appdl__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 40px;
    align-items: center;
}

/* ---- left: copy ------------------------------------------------ */

.mmc-appdl__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--theme-color);
    padding: 13px 22px;
    border-radius: 8px;
    margin-bottom: 28px;
    transition: var(--transition);
}

.mmc-appdl__pill:hover {
    background: var(--secondary-color);
}

.mmc-appdl__pill i {
    font-size: 14px;
}

.mmc-appdl__title {
    font-family: var(--title-font);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary-color);
    margin: 0 0 20px;
}

.mmc-appdl__title span {
    color: var(--theme-color);
}

.mmc-appdl__lead {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.75;
    color: var(--appdl-ink);
    max-width: 420px;
    margin: 0 0 36px;
}

/* ---- feature grid (2x2) ----------------------------------------- */

.mmc-appdl__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    margin-bottom: 36px;
}

.mmc-appdl__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--theme-light);
    color: var(--theme-color);
    font-size: 20px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.mmc-appdl__feature:hover .mmc-appdl__feature-icon {
    background: var(--theme-color);
    color: #fff;
}

.mmc-appdl__feature strong {
    display: block;
    font-family: var(--title-font);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.mmc-appdl__feature p {
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.5;
    color: var(--appdl-ink);
    margin: 0;
}

/* ---- divider ------------------------------------------------------ */

.mmc-appdl__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.mmc-appdl__divider::before,
.mmc-appdl__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e7e2d2;
}

.mmc-appdl__divider span {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--theme-color);
    white-space: nowrap;
}

/* ---- store badges -------------------------------------------------- */

.mmc-appdl__stores {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}

.mmc-appdl__store {
    display: inline-block;
    line-height: 0;
}

.mmc-appdl__store img {
    height: 52px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.mmc-appdl__store:hover img {
    transform: translateY(-3px);
}

.mmc-appdl__store-labels {
    display: flex;
    gap: 18px;
}

.mmc-appdl__store-labels span {
    display: inline-block;
    width: 168px;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--appdl-ink);
    text-align: center;
}

/* ---- right: illustrated visual ------------------------------------- */

.mmc-appdl__visual {
    position: relative;
    min-height: 620px;
}

.mmc-appdl__blob {
    position: absolute;
    top: 6%;
    right: 6%;
    width: 460px;
    height: 460px;
    max-width: 80%;
    max-height: 80%;
    border-radius: 50%;
    background: var(--theme-color);
    z-index: 0;
}

.mmc-appdl__dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(var(--theme-color) 2.5px, transparent 2.5px);
    background-size: 18px 18px;
    opacity: .25;
    z-index: 0;
}

.mmc-appdl__cloud {
    position: absolute;
    top: 4%;
    left: 12%;
    width: 110px;
    height: auto;
    color: var(--theme-light);
    z-index: 0;
}

.mmc-appdl__skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 130px;
    color: var(--theme-light);
    opacity: .7;
    z-index: 0;
}

.mmc-appdl__pin {
    position: absolute;
    top: 14%;
    right: 2%;
    color: var(--theme-color);
    font-size: 30px;
    z-index: 3;
    filter: drop-shadow(0 6px 10px rgba(255, 144, 0, 0.35));
}

.mmc-appdl__phone {
    position: absolute;
    width: 260px;
    height: auto;
    filter: drop-shadow(0 24px 34px rgba(26, 25, 44, 0.25));
}

.mmc-appdl__phone--1 {
    left: 12%;
    bottom: 56px;
    z-index: 2;
    z-index: 6;
    transform: rotate(-3deg);
}

.mmc-appdl__phone--2 {
    right: 8%;
    top: 6%;
    width: 270px;
    z-index: 3;
}

.mmc-appdl__car {
    position: absolute;
    right: 4%;
    bottom: -7%;
    width: 420px;
    max-width: 62%;
    z-index: 8;
    filter: drop-shadow(0 20px 24px rgba(26, 25, 44, 0.3));
}

/* ---- responsive ------------------------------------------------------ */

@media (max-width: 980px) {
    .mmc-appdl__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mmc-appdl__lead {
        max-width: 100%;
    }

    .mmc-appdl__visual {
        min-height: 520px;
    }


    .mmc-appdl__blob {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 560px) {
    .mmc-appdl {
        padding: 64px 0;
    }

    .mmc-appdl__features {
        grid-template-columns: 1fr;
    }

    .mmc-appdl__visual {
        min-height: 420px;
    }

    .mmc-appdl__blob {
        width: 280px;
        height: 280px;
    }

    .mmc-appdl__pin {
        font-size: 22px;
    }

    .mmc-appdl__store img {
        height: 44px;
    }

    .mmc-appdl__store-labels span {
        width: 130px;
        font-size: 12px;
    }
}
/* ================================================================
TESTIMONIALS  —  mmc-testimonials  v1
Swiper carousel — 8 review cards, 4 visible per view on desktop,
tapering down to 1 on mobile. Custom pagination + arrow controls
below the slider so they match the site's own buttons instead of
Swiper's default look.
================================================================ */

.mmc-testimonials {
    --tm-ink: #55546a;
    --tm-card: #fff;
    padding: 100px 0;
}

.mmc-testimonials .container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-testimonials__head {
    max-width: 620px;
    margin: 0 auto 48px;
    text-align: center;
}

.mmc-testimonials__eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.mmc-testimonials__title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin: 0 0 18px;
}

.mmc-testimonials__title span {
    color: var(--theme-color);
}

.mmc-testimonials__lead {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--tm-ink);
    margin: 0;
}

/* ---- swiper viewport --------------------------------------------- */

.mmc-testimonials__swiper {
    overflow: hidden;
    padding: 8px 4px 28px;
}
.swiper-wrapper{
    height: auto;
}
/* ---- card ----------------------------------------------------------- */

.mmc-testimonials__card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--tm-card);
    border: 1px solid #ece7d8;
    border-radius: 16px;
    padding: 28px 24px 24px;
    transition: var(--transition);
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.06);
}

.mmc-testimonials__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -22px rgba(26, 25, 44, 0.3);
    border-color: var(--theme-color);
}

.mmc-testimonials__quote-icon {
    color: var(--theme-light);
    font-size: 26px;
    margin-bottom: 14px;
}

.mmc-testimonials__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.mmc-testimonials__stars i {
    color: var(--theme-color);
    font-size: 13px;
}

.mmc-testimonials__star--off {
    color: #e6e2d4;
}

.mmc-testimonials__text {
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.65;
    color: var(--secondary-color);
    margin: 0 0 22px;
    flex: 1;
}

.mmc-testimonials__person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed #ece7d8;
}

.mmc-testimonials__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-light);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 15px;
}

.mmc-testimonials__person strong {
    display: block;
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.mmc-testimonials__route {
    display: block;
    font-family: var(--body-font);
    font-size: 12px;
    color: var(--tm-ink);
    margin-top: 2px;
}

/* ---- controls: pagination + arrows -------------------------------- */

.mmc-testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 8px;
}

.mmc-testimonials__arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    background: transparent;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.mmc-testimonials__arrow:hover {
    background: var(--theme-color);
    color: #fff;
}

.mmc-testimonials__pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.mmc-testimonials__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e6e2d4;
    opacity: 1;
    transition: var(--transition);
}

.mmc-testimonials__pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
    width: 22px;
    border-radius: 4px;
}

/* ---- responsive -------------------------------------------------- */

@media (max-width: 640px) {
    .mmc-testimonials {
        padding: 64px 0;
    }

    .mmc-testimonials__controls {
        gap: 14px;
    }

    .mmc-testimonials__arrow {
        width: 38px;
        height: 38px;
    }
}
/* ================================================================
FAQ  —  mmc-faq  v1
Two-column layout: intro + direct-contact card on the left, a
Bootstrap accordion on the right, restyled to match the site's own
tokens instead of Bootstrap's default blue focus/active states.
================================================================ */

.mmc-faq {
    --faq-ink: #55546a;
    padding: 100px 0;
    background: #fff;
}

.mmc-faq .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-faq__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

/* ---- left: intro + support card ------------------------------------ */

.mmc-faq__intro {
    position: sticky;
    top: 100px;
}

.mmc-faq__eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.mmc-faq__title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin: 0 0 18px;
}

.mmc-faq__title span {
    color: var(--theme-color);
}

.mmc-faq__lead {
    font-family: var(--body-font);
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--faq-ink);
    margin: 0 0 32px;
    max-width: 380px;
}

.mmc-faq__support {
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.mmc-faq__support::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--theme-color);
    opacity: .14;
}

.mmc-faq__support-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--theme-color);
    font-size: 20px;
    margin-bottom: 18px;
}

.mmc-faq__support strong {
    position: relative;
    display: block;
    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.mmc-faq__support p {
    position: relative;
    font-family: var(--body-font);
    font-size: 13.5px;
    color: #b9b8c9;
    margin: 0 0 20px;
}

.mmc-faq__support-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--secondary-color);
    background: var(--theme-color);
    padding: 13px 22px;
    border-radius: 8px;
    transition: var(--transition);
}

.mmc-faq__support-cta:hover {
    background: #fff;
}

/* ---- right: accordion ------------------------------------------------ */

.mmc-faq__accordion .accordion-item {
    background: #fffaf0;
    border: 1px solid #ece7d8;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.mmc-faq__accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.mmc-faq__accordion .accordion-button {
    font-family: var(--title-font);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    padding: 14px 22px;
    box-shadow: none;
    line-height: 1;
}

.mmc-faq__accordion .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: transparent;
    box-shadow: none;
}

.mmc-faq__accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* replace bootstrap's default chevron with a themed plus/minus */
.mmc-faq__accordion .accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-weight: 300;
    content: "\f067"; /* fa-plus */
    font-size: 14px;
    color: var(--theme-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--theme-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.mmc-faq__accordion .accordion-button:not(.collapsed)::after {
    content: "\f068"; /* fa-minus */
    background-color: var(--theme-color);
    color: #fff;
    transform: rotate(180deg);
}

.mmc-faq__accordion .accordion-body {
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.7;
    color: var(--faq-ink);
    padding: 0 22px 22px;
}

/* ---- responsive -------------------------------------------------- */

@media (max-width: 900px) {
    .mmc-faq__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .mmc-faq__intro {
        position: static;
    }

    .mmc-faq__lead {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .mmc-faq {
        padding: 64px 0;
    }

    .mmc-faq__accordion .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }

    .mmc-faq__accordion .accordion-body {
        padding: 0 18px 18px;
    }
}
/* ================================================================
FOOTER  —  mmc-footer  v1
Dark footer on --secondary-color to close the page, five columns
(brand, quick links, services, routes, contact) plus a slim legal
bar, and a floating call button pinned bottom-right on mobile.
================================================================ */

.mmc-footer {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.mmc-footer .container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.mmc-footer__top {
    padding: 30px 0 20px;
    position: relative;
}

.mmc-footer__top::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--theme-color);
    opacity: .08;
}

.mmc-footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* ---- brand column ------------------------------------------------ */

.mmc-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.mmc-footer__logo img {
    height: 42px;
    width: auto;
}

.mmc-footer__about {
    font-family: var(--body-font);
    font-size: 13.5px;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 24px;
    max-width: 280px;
}

.mmc-footer__social {
    display: flex;
    gap: 10px;
}

.mmc-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.mmc-footer__social a:hover {
    background: var(--theme-color);
    transform: translateY(-3px);
}

/* ---- link columns -------------------------------------------------- */

.mmc-footer__heading {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
}

.mmc-footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: var(--theme-color);
}

.mmc-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mmc-footer__links a {
    font-family: var(--body-font);
    font-size: 13.5px;
    color: #fff;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mmc-footer__links a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--theme-color);
    flex-shrink: 0;
    opacity: .7;
    transition: var(--transition);
}

.mmc-footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}

.mmc-footer__links a:hover::before {
    opacity: 1;
}

/* ---- contact column -------------------------------------------------- */

.mmc-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mmc-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--body-font);
    font-size: 13.5px;
    color: #fff;
    line-height: 1.5;
}

.mmc-footer__contact i {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.mmc-footer__contact a {
    color: #fff;
    transition: var(--transition);
}

.mmc-footer__contact a:hover {
    color: var(--theme-color);
}

/* ---- bottom legal bar -------------------------------------------------- */

.mmc-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}

.mmc-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mmc-footer__bottom-inner p {
    font-family: var(--body-font);
    font-size: 13px;
    color: #fff;
    margin: 0;
}

.mmc-footer__legal {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.mmc-footer__legal a {
    font-family: var(--body-font);
    font-size: 13px;
    color: #fff;
    transition: var(--transition);
}

.mmc-footer__legal a:hover {
    color: var(--theme-color);
}

/* ---- floating call button (mobile) -------------------------------------------------- */

.mmc-footer__floatcall {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 14px 28px -10px rgba(255, 144, 0, 0.6);
    z-index: 50;
    animation: mmc-footer-pulse 2.4s infinite;
}

@keyframes mmc-footer-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 144, 0, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(255, 144, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 144, 0, 0); }
}

/* ---- responsive -------------------------------------------------- */

@media (max-width: 1080px) {
    .mmc-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 44px;
    }

    .mmc-footer__col--brand {
        grid-column: 1 / -1;
    }

    .mmc-footer__about {
        max-width: 460px;
    }
}

@media (max-width: 680px) {


    .mmc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .mmc-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .mmc-footer__legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mmc-footer__floatcall {
        display: flex;
    }
}

@media (max-width: 460px) {
    .mmc-footer__grid {
        grid-template-columns: 1fr;
    }
}

.mmc-drawer__panel{
  padding-inline: 15px;
}
.sidebar_login_button button{
  position: relative;
    background: #fff1df;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 14px;
    border: 0;
    outline: 0;
    width: 100%;
}
.sidebar_login_button .login_logo{
    height: 53px;
    width: 53px;
    min-width: 53px;
    display: inline-block;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px 0px, rgba(0, 0, 0, 0.1) 0px 6px 20px 0px;
}
.sidebar_login_button .login_logo img{
  width: 100%;
    border-radius: 50%;
  height: 100%;
  object-fit: cover;
}
.sidebar_login_button .sing_in_text{
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-right: 5px;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
}
.sidebar_login_button .sing_in_text .upper{

    color: var(--theme-color);
    margin-bottom: 5px;
}
.sidebar_login_button .sing_in_text .down{
  color: #000;
}
.sidebar_login_button .sing_in_text .name{
  font-size: 16px;
  color: #fff;
}
.sidebar_login_button .icon{
  margin-left: 8px;
}
.sidebar_login_button .icon i{
  color: var(--theme-color);
}
.sidebar_login_button a{
  position: relative;
  background: linear-gradient(85.23deg, rgb(0, 210, 255) 0%, rgb(58, 123, 213) 100%);
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 14px;
    border: 0;
    outline: 0;
    width: 100%;
}
.sidebar_login_button.profile .icon i{
  color: #fff;
}
.sidebar_login_button.profile .login_logo{
  margin-right: 15px;
}
.sidebar_lists{
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}
.sidebar_lists li{
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 15px;
  border:  1px solid rgb(226, 226, 226);
    padding: 12px;
    margin-bottom: 16px;
    gap: 7px;
    justify-content: start;
}
.sidebar_lists li .right_icon{
  margin-left: auto;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 600;
}

.sidebar_lists li .icon{
    font-size: 22px;
    color: #757575;
}
.sidebar_lists li .upper{
    font-weight: 600;
    font-size: 13px;
}
.sidebar_lists li .upper small{
  font-weight: 500;
  font-size: 11px;
}
.sidebar_lists li .bottom{
  font-size: 12px;
}

.polocies__list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-size: 10px;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 600;
}
.polocies__list li:first-child{
  list-style-type: none;
  list-style: none;
}
.app_images{
  display: flex;
  gap: 5px;
}
.app_images a{
  display: block;
}
.app_images a img{
  width: 100%;
  border-radius: 10px;
}
@media(max-width:768px){
  .lp-overlay{
        align-items: self-end;
        padding: 0;
  }
  .lp-box{
    border-radius: 18px  18px 0 0 ;
  }
}
.ap-clear-all, .ap-clear-sec{
    font-size: 11px;
    font-weight: 700;
    color: var(--tr-blue);
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .4px;
}


.nw-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 25, 44, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    font-family: var(--body-font);
    animation: nwFadeIn .25s ease;
}

@keyframes nwFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.nw-box {
    background: #fff;
    border-radius: 18px;
    max-width: 380px;
    width: 100%;
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(26, 25, 44, 0.25);
    position: relative;
    animation: nwPopIn .3s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes nwPopIn {
    from { opacity: 0; transform: scale(.85) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.nw-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--theme-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--theme-color);
}

.nw-title {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 10px;
}

.nw-msg {
    font-family: var(--body-font);
    font-size: 14.5px;
    line-height: 1.6;
    color: #6b6a7a;
    margin: 0 0 26px;
}

.nw-close-btn {
    background: var(--theme-color);
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.nw-close-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.nw-close-btn:active {
    transform: translateY(0);
}
.cx-contact {
    padding: 70px 0 90px;
    background: #faf9f7;
    font-family: var(--body-font);
}

/* ── HEADER ── */
.cx-head {
    max-width: 640px;
    margin: 0 auto 50px;
    text-align: center;
}

.cx-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--theme-light);
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.cx-head__title {
    font-family: var(--title-font);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.15;
    margin: 0 0 14px;
}

.cx-head__title em {
    font-style: normal;
    color: var(--theme-color);
}

.cx-head__sub {
    font-size: 15.5px;
    line-height: 1.7;
    color: #6b6a7a;
    margin: 0;
}

/* ── GRID ── */
.cx-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .cx-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SIDE CHANNELS ── */
.cx-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cx-chan {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px 18px;
    text-decoration: none;
    transition: var(--transition);
}

.cx-chan:hover {
    border-color: var(--theme-color);
    box-shadow: 0 10px 24px rgba(255, 144, 0, 0.12);
    transform: translateY(-2px);
}

.cx-chan--static:hover {
    transform: none;
    box-shadow: none;
    border-color: #eee;
}

.cx-chan__ico {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
}

.cx-chan__ico--call { background: var(--theme-color); }
.cx-chan__ico--wa   { background: #25d366; }
.cx-chan__ico--mail { background: var(--secondary-color); }
.cx-chan__ico--loc  { background: #6b6a7a; }

.cx-chan__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.cx-chan__text strong {
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.cx-chan__text span {
    font-size: 13px;
    color: #8a8998;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cx-chan__arr {
    font-size: 12px;
    color: #c9c8d1;
    transition: var(--transition);
}

.cx-chan:hover .cx-chan__arr {
    color: var(--theme-color);
    transform: translateX(3px);
}

/* ── STATS ── */
.cx-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 6px 0;
}

.cx-stats__item {
    background: var(--secondary-color);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
}

.cx-stats__item strong {
    display: block;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.cx-stats__item strong sup {
    color: var(--theme-color);
    font-size: 12px;
}

.cx-stats__item span {
    font-size: 11.5px;
    color: #b3b2c2;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* ── MAP ── */
.cx-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    border: 1px solid #eee;
}

.cx-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(15%);
}

.cx-map__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 7px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cx-map__badge i {
    color: var(--theme-color);
}

/* ── FORM CARD ── */
.cx-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 42px 40px;
    border: 1px solid #eee;
    box-shadow: 0 20px 50px rgba(26, 25, 44, 0.05);
}

@media (max-width: 600px) {
    .cx-form-card { padding: 30px 22px; }
}

.cx-form-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.cx-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--theme-color);
}

.cx-form-card__title {
    font-family: var(--title-font);
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 8px;
}

.cx-form-card__desc {
    font-size: 14.5px;
    color: #8a8998;
    margin: 0 0 30px;
}

/* ── FORM / FLOATING LABELS ── */
.cx-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cx-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 560px) {
    .cx-row { grid-template-columns: 1fr; }
}

.cx-field {
    position: relative;
}

.cx-field input,
.cx-field textarea {
    width: 100%;
    background: #f7f6f4;
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 20px 16px 8px;
    font-family: var(--body-font);
    font-size: 14.5px;
    color: var(--secondary-color);
    transition: var(--transition);
    outline: none;
}

.cx-field textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 24px;
}

.cx-field input:focus,
.cx-field textarea:focus {
    background: #fff;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 4px var(--theme-light);
}

.cx-field label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 14px;
    color: #9b9aa8;
    display: flex;
    align-items: center;
    gap: 7px;
    pointer-events: none;
    transition: var(--transition);
}

.cx-field label i {
    font-size: 12px;
    color: #c9c8d1;
    transition: var(--transition);
}

.cx-field input:focus + label,
.cx-field input:not(:placeholder-shown) + label,
.cx-field textarea:focus + label,
.cx-field textarea:not(:placeholder-shown) + label {
    top: 7px;
    font-size: 11px;
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: .02em;
}

.cx-field input:focus + label i,
.cx-field textarea:focus + label i {
    color: var(--theme-color);
}

/* ── SUBMIT ── */
.cx-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 30px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
}

.cx-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 25, 44, 0.18);
}

.cx-submit i {
    font-size: 14px;
}