/*
 * MMT Global — Theme-level styles
 * Brand values sourced from Tourm kit migration.
 */


/* =============================================================================
   1. Brand Variables
   ============================================================================= */

:root {
    /* Brand color tokens */
    --mmt-primary:   #1CA8CB;
    --mmt-accent:    #178EAC;
    --mmt-heading:   #113D48;
    --mmt-body-text: #6E7070;

    /* Elementor global color slots */
    --e-global-color-primary:   #1CA8CB;
    --e-global-color-secondary: #113D48;
    --e-global-color-text:      #6E7070;
    --e-global-color-accent:    #178EAC;

    /* Elementor global typography slots */
    --e-global-typography-primary-font-family:   Manrope;
    --e-global-typography-primary-font-weight:   700;
    --e-global-typography-secondary-font-family: Manrope;
    --e-global-typography-secondary-font-weight: 700;
    --e-global-typography-text-font-family:      Inter;
    --e-global-typography-text-font-weight:      400;
    --e-global-typography-accent-font-family:    Inter;
    --e-global-typography-accent-font-weight:    400;
}


/* =============================================================================
   2. Base Typography
   ============================================================================= */

body {
    color:       #6E7070;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size:   16px;
    line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
    color:       #113D48;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-weight: 700;
    line-height: 1.3;
}
h1 { font-size: 40px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

a       { color: #1CA8CB; }
a:hover { color: #178EAC; }


/* =============================================================================
   3. Buttons
   ============================================================================= */

/* Elementor buttons — matches mmt-tourm button style; typography inherits from theme */
.elementor-button,
.elementor-button-wrapper .elementor-button {
    display:         block !important;
    width:           fit-content !important;
    margin-left:     auto !important;
    margin-right:    auto !important;
    text-align:      center !important;
    background:      #113D48 !important;
    color:           #ffffff !important;
    border-radius:   48px !important;
    padding:         20px 52px !important;
    border:          none !important;
    box-shadow:      none !important;
    text-decoration: none !important;
    transition:      background 0.3s ease-out !important;
}

.elementor-button:hover,
.elementor-button-wrapper .elementor-button:hover {
    background: #1CA8CB !important;
    color:      #ffffff !important;
}

/* Non-Elementor buttons (Gutenberg, plain HTML) — typography inherits from theme */
.wp-block-button__link,
input[type="submit"]:not(#wpadminbar *):not(div.wpforms-container-full *),
button[type="submit"]:not(#wpadminbar *):not(div.wpforms-container-full *) {
    display:         inline-flex !important;
    align-items:     center !important;
    justify-content: center !important;
    background:      #113D48 !important;
    color:           #ffffff !important;
    border-radius:   48px !important;
    padding:         20px 52px !important;
    border:          none !important;
    box-shadow:      none !important;
    cursor:          pointer !important;
    transition:      background 0.3s ease-out !important;
}

.wp-block-button__link:hover,
input[type="submit"]:not(#wpadminbar *):not(div.wpforms-container-full *):hover,
button[type="submit"]:not(#wpadminbar *):not(div.wpforms-container-full *):hover {
    background: #1CA8CB !important;
    color:      #ffffff !important;
}

/* Center Gutenberg button block */
.wp-block-button {
    text-align: center !important;
}


/* =============================================================================
   4. Layout & Containers — 1920px cap
   ============================================================================= */

/* Non-Elementor pages (block editor, plain templates) */
body:not(.elementor-page) .site-main {
    max-width:     1920px;
    margin-left:   auto;
    margin-right:  auto;
    padding-left:  20px;
    padding-right: 20px;
    box-sizing:    border-box;
}

/* Classic Elementor sections */
.elementor-section > .elementor-container {
    max-width:     1920px;
    margin-left:   auto;
    margin-right:  auto;
    padding-left:  20px;
    padding-right: 20px;
}

/* Flex containers */
:is(.elementor-section-wrap, [data-elementor-id]) > .e-con {
    margin-left:   auto !important;
    margin-right:  auto !important;
    padding-left:  20px !important;
    padding-right: 20px !important;
    max-width:     min(100%, 1920px) !important;
}
.e-con > .e-con-inner {
    max-width: min(100%, 1920px) !important;
}

/* Mobile: remove the 20px global side padding so widget/section-level
   padding is the sole source of horizontal spacing across all layouts. */
@media (max-width: 767px) {
    /* Elementor flex containers (all pages) */
    :is(.elementor-section-wrap, [data-elementor-id]) > .e-con {
        padding-left:  0 !important;
        padding-right: 0 !important;
    }
    /* Classic Elementor sections */
    .elementor-section > .elementor-container {
        padding-left:  0;
        padding-right: 0;
    }
    /* Non-Elementor pages (block editor, plain templates) */
    body:not(.elementor-page) .site-main {
        padding-left:  10px;
        padding-right: 10px;
    }
}


/* =============================================================================
   4b. Sticky Header Z-Index
   ============================================================================= */

/* Mainbar uses Elementor-native z-index:999 (set in JSON). Topbar's tb_gt_wrap
   has z-index:1000 in the header embedded CSS, which beats 999 so the language
   dropdown shows on top without any override here. */

.elementor-element-hdr_mainbar { box-shadow: none !important; }

/* Nav menu + topbar links — bolder weight */
[data-id="mainbar_nav"] a.elementor-item,
[data-id="mainbar_nav"] a.elementor-item-anchor { font-weight: 600 !important; }
.tb-link { font-weight: 600 !important; }
.gt-label { font-weight: 600 !important; }

/* Elementor buttons — match WPForms submit button weight (700) */
.elementor-button { font-weight: 700 !important; }

/* Language button — pill border matching text color */
.gt-label { border: 1.5px solid #333 !important; border-radius: 20px !important; padding: 4px 12px !important; color: #333 !important; }
.gt-label:hover { background: #f5f5f5 !important; border-color: #1a9999 !important; color: #1a9999 !important; }


/* =============================================================================
   5. WP FORMS
   ============================================================================= */

/* Submit buttons — default state */
div.wpforms-container-full input[type=submit]:not(:hover):not(:active),
div.wpforms-container-full button[type=submit]:not(:hover):not(:active),
div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full input[type=submit]:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full button[type=submit]:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
    background-color: #113D48 !important;
    padding: 20px 52px !important;
    border-radius: 48px !important;
    height: auto !important;
    color: #ffffff !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: none !important;
    box-shadow: none !important;
    transition: background 0.3s ease-out !important;
    gap: 8px !important;
}

/* Submit buttons — hover/active state */
div.wpforms-container-full input[type=submit]:hover,
div.wpforms-container-full input[type=submit]:active,
div.wpforms-container-full button[type=submit]:hover,
div.wpforms-container-full button[type=submit]:active,
div.wpforms-container-full .wpforms-page-button:hover,
div.wpforms-container-full .wpforms-page-button:active,
.wp-core-ui div.wpforms-container-full input[type=submit]:hover,
.wp-core-ui div.wpforms-container-full input[type=submit]:active,
.wp-core-ui div.wpforms-container-full button[type=submit]:hover,
.wp-core-ui div.wpforms-container-full button[type=submit]:active,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:hover,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:active {
    background: #1CA8CB !important;
    padding: 20px 52px !important;
    border-radius: 48px !important;
    height: auto !important;
    color: #ffffff !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: none !important;
    box-shadow: none !important;
    transition: background 0.3s ease-out !important;
    gap: 8px !important;
}

/* Submit buttons — focus pseudo-element fix */
div.wpforms-container-full input[type=submit]:focus:after,
div.wpforms-container-full button[type=submit]:focus:after,
div.wpforms-container-full .wpforms-page-button:focus:after,
.wp-core-ui div.wpforms-container-full input[type=submit]:focus:after,
.wp-core-ui div.wpforms-container-full button[type=submit]:focus:after,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:focus:after {
    position: unset !important;
}

/* Form layout */
.wpforms-description {
    text-align: center !important;
}
.wpforms-submit-container {
    text-align: center !important;
}
div.wpforms-container-full:not(:empty) {
    margin: 0 !important;
}
div.wpforms-container-full .wpforms-form .wpforms-head-container {
    padding: 0 !important;
}
.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 5px 0 !important;
}

/* Form title */
.wpforms-form .wpforms-title {
    color: #113D48 !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 32px !important;
}

/* Labels */
label.wpforms-field-label,
label.wpforms-field-label-inline,
legend.wpforms-field-label {
    color: #6E7070 !important;
    font-size: 14px !important;
}
div.wpforms-container-full .wpforms-field-label, .wp-core-ui div.wpforms-container-full .wpforms-field-label {
    margin: 0 !important;
    padding: 0 6px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #6E7070 !important;
}

/* Sublabels */
div.wpforms-container-full .wpforms-field-sublabel, .wp-core-ui div.wpforms-container-full .wpforms-field-sublabel {
    font-size: 12px !important;
    line-height: 13px !important;
    padding: 0 6px !important;
    margin: 0 !important;
    color: #00000069 !important;
}

/* Fields */
div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month],
div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time],
div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full textarea, .wp-core-ui div.wpforms-container-full input[type=date],
.wp-core-ui div.wpforms-container-full input[type=datetime], .wp-core-ui div.wpforms-container-full input[type=datetime-local], .wp-core-ui div.wpforms-container-full input[type=email], .wp-core-ui div.wpforms-container-full input[type=month],
.wp-core-ui div.wpforms-container-full input[type=number], .wp-core-ui div.wpforms-container-full input[type=password], .wp-core-ui div.wpforms-container-full input[type=range], .wp-core-ui div.wpforms-container-full input[type=text],
.wp-core-ui div.wpforms-container-full input[type=time], .wp-core-ui div.wpforms-container-full input[type=url], .wp-core-ui div.wpforms-container-full input[type=week],
.wp-core-ui div.wpforms-container-full textarea {
    border-radius: 8px !important;
    font-size: 14px !important;
    padding: 16px 10px !important;
    line-height: 1 !important;
}
div.wpforms-container-full select, .wp-core-ui div.wpforms-container-full select {
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    min-height: 46px !important;
}
div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], .wp-core-ui div.wpforms-container-full input[type=search], .wp-core-ui div.wpforms-container-full input[type=tel] {
    border-radius: 8px !important;
    font-size: 14px !important;
    padding: 16px 10px 16px 45px !important;
    line-height: 1 !important;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
    height: calc( var( --wpforms-field-size-input-height ) * 2) !important;
}
div.wpforms-container-full .wpforms-form .wpforms-description {
    padding: 12px 6px !important;
}

/* Icon choices */
div.wpforms-container.wpforms-container-full .wpforms-form ul.wpforms-icon-choices .wpforms-icon-choices-item svg {
    fill: #1CA8CB !important;
}
div.wpforms-container.wpforms-container-full .wpforms-form ul.wpforms-icon-choices.wpforms-icon-choices-default .wpforms-icon-choices-icon:hover {
    box-shadow: 0 0 0 1px #1CA8CB !important;
    border-color: #1CA8CB !important;
}

/* Hide conflicting pseudo-elements */
.wpforms-container input[type="checkbox"] ~ label:before,
.wpforms-container input[type="radio"] ~ label:before {
    content: none !important;
    display: none !important;
}

/* Radio buttons */
div.wpforms-container-full .wpforms-field-radio li label::before,
div.wpforms-container-full .wpforms-field-radio li label::after {
    content: none !important;
}
div.wpforms-container-full input[type="radio"]::before,
div.wpforms-container-full input[type="radio"]::after {
    content: none !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
}
div.wpforms-container-full input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 19px !important;
    border: 2px solid rgba(0,0,0,0.3) !important;
    border-radius: 50% !important;
    background: #fff !important;
    margin: 0 0 0 8px !important;
    padding: 0 !important;
    position: static !important;
    opacity: 1 !important;
    box-shadow: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    transition: border-color 120ms ease-in-out, background-image 120ms ease-in-out !important;
}
div.wpforms-container-full input[type="radio"]:hover,
div.wpforms-container-full input[type="radio"]:focus,
div.wpforms-container-full input[type="radio"]:active,
div.wpforms-container-full input[type="radio"]:focus-visible {
    border-color: var(--wpforms-button-background-color, #1CA8CB) !important;
    outline: none !important;
}
div.wpforms-container-full input[type="radio"]:checked {
    border-color: rgba(0,0,0,0.3) !important;
    background-image: radial-gradient(
        circle,
        var(--wpforms-button-background-color, #1CA8CB) 50%,
        transparent 51%
    ) !important;
}
div.wpforms-container-full .wpforms-field-radio ul li {
    display: inline-flex !important;
    align-items: center !important;
}
div.wpforms-container-full .wpforms-field-radio li label {
    margin: 0 !important;
    line-height: 1.2 !important;
}
div.wpforms-container-full .wpforms-field-label-inline label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 16px 12px 0 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* Checkboxes */
div.wpforms-container-full input[type=checkbox] {
    visibility: visible !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-color: #fff !important;
    border: 2px solid #ccc !important;
    border-radius: 3px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    outline: none !important;
    box-shadow: none !important;
}
div.wpforms-container-full input[type=checkbox]:checked::after {
    visibility: visible !important;
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 5px !important;
    height: 10px !important;
    border: solid var(--wpforms-button-background-color, #1CA8CB) !important;
    border-width: 0 2px 2px 0 !important;
    transform: translate(-50%, -60%) rotate(45deg) !important;
    box-sizing: content-box !important;
    pointer-events: none !important;
    z-index: 2 !important;
    opacity: 1 !important;
}
div.wpforms-container-full input[type=checkbox]:hover {
    visibility: visible !important;
    border-color: var(--wpforms-button-background-color, #1CA8CB) !important;
}
div.wpforms-container-full input[type=checkbox]:focus {
    visibility: visible !important;
    border-color: var(--wpforms-button-background-color, #1CA8CB) !important;
}
div.wpforms-container-full input[type=checkbox]:before {
    visibility: hidden !important;
}

/* Form title/description helpers */
.wpforms-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5em;
}
.wpforms-form-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5em;
    line-height: normal;
}

/* WPForms container — no extra card border; the outer Elementor column provides the card */
div.wpforms-container-full,
.custom-inquiry-wrap {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
div.wpforms-container-full:not(:empty) {
    margin: 0 !important;
}
.custom-inquiry-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}
.custom-inquiry-desc {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: left;
}

/* Generic form fields */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="number"],
.wpforms-form select,
.wpforms-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #fff;
}

/* =============================================================================
   6. MMT Search Filters — Tours Archive
   ============================================================================= */

body.mmt-custom-tours-archive .breadcrumb-wrapper,body.mmt-custom-tours-archive .breadcrumbs,body.mmt-custom-tours-archive .breadcrumb,body.mmt-custom-tours-archive .page-title,body.mmt-custom-tours-archive .entry-header,body.mmt-custom-tours-archive .archive-header,body.mmt-custom-tours-archive .page-header,body.mmt-custom-tours-archive .sidebar-area,body.mmt-custom-tours-archive .widget-area,body.mmt-custom-tours-archive .navigation.pagination,body.mmt-custom-tours-archive .nav-links,body.mmt-custom-tours-archive .pagination,body.mmt-custom-tours-archive .page-numbers { display: none !important; }
body.mmt-custom-tours-archive,body.mmt-custom-tours-archive #page,body.mmt-custom-tours-archive .site,body.mmt-custom-tours-archive .site-content,body.mmt-custom-tours-archive .site-main,body.mmt-custom-tours-archive #primary,body.mmt-custom-tours-archive #main,body.mmt-custom-tours-archive main,body.mmt-custom-tours-archive .content-area,body.mmt-custom-tours-archive .entry-content,body.mmt-custom-tours-archive .wrapper,body.mmt-custom-tours-archive .container { overflow: visible !important; }

.mmt-tours-shell { max-width: 1920px; margin: 0 auto; padding: 30px 40px 50px; box-sizing: border-box; overflow: visible !important; }
.mmt-tours-h1-wrap { margin: 0 0 26px; }
.mmt-tours-h1 { font-size: 38px; line-height: 1.2; font-weight: 700; color: var(--mmt-heading); margin: 0 0 10px; letter-spacing: -.5px; }
.mmt-tours-h1-sub { margin: 0; font-size: 16px; line-height: 1.7; color: #5b6470; max-width: 880px; }

.mmt-tours-filter-bar-wrap { margin: 0 0 36px; position: relative; z-index: 30; }
.mmt-tours-filter-bar { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px; background: #fff; border-radius: 18px; box-shadow: 0 2px 4px rgba(15,23,42,.03),0 16px 40px rgba(15,23,42,.07); padding: 18px; border: 1px solid #e8edf2; position: relative; }
.mmt-tours-filter-field { position: relative; display: flex; flex-direction: column; gap: 8px; min-width: 0; padding: 0; background: transparent !important; }
.mmt-tours-filter-field > label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #6b7a89; margin: 0; padding: 0 2px; line-height: 1; pointer-events: none; }
.mmt-tours-combo-input { width: 100%; box-sizing: border-box; height: 56px; padding: 0 56px 0 18px; border: 1.5px solid #d8e3ec; border-radius: 12px; background: #fff; font-size: 15.5px; font-weight: 600; color: #0f172a; outline: none; font-family: inherit; letter-spacing: -.1px; transition: border-color .2s, box-shadow .2s; }
.mmt-tours-combo-input::placeholder { color: #94a3b8; font-weight: 500; font-size: 15px; }
.mmt-tours-combo-input:hover { border-color: #b8c8d6; }
.mmt-tours-combo-input:focus,.mmt-tours-filter-field.mmt-open .mmt-tours-combo-input { border-color: var(--mmt-primary); box-shadow: 0 0 0 3px rgba(28,168,203,.15); }
.mmt-tours-filter-field .mmt-tours-caret { position: absolute; right: 10px; bottom: 10px; width: 36px; height: 36px; cursor: pointer; border-radius: 50%; background-color: #f1f6fa; border: 1px solid #e3ecf3; display: flex; align-items: center; justify-content: center; transition: background-color .25s,border-color .25s,transform .3s cubic-bezier(.4,0,.2,1); z-index: 4; }
.mmt-tours-filter-field .mmt-tours-caret::after { content: ""; display: block; width: 10px; height: 10px; border-right: 2px solid var(--mmt-heading); border-bottom: 2px solid var(--mmt-heading); transform: translateY(-3px) rotate(45deg); }
.mmt-tours-filter-field:hover .mmt-tours-caret { background-color: #e6f1f8; border-color: #cfe1ed; }
.mmt-tours-filter-field.mmt-open .mmt-tours-caret { transform: rotate(180deg); background-color: var(--mmt-heading); border-color: var(--mmt-heading); }
.mmt-tours-filter-field.mmt-open .mmt-tours-caret::after { border-right-color: #fff; border-bottom-color: #fff; }
.mmt-tours-filter-field .mmt-tours-clear-x { position: absolute; right: 14px; bottom: 14px; width: 28px; height: 28px; border-radius: 50%; background: #f1f5f9; color: #64748b; font-size: 14px; line-height: 28px; text-align: center; cursor: pointer; display: none; z-index: 5; font-weight: 700; user-select: none; transition: background .15s,color .15s; }
.mmt-tours-filter-field .mmt-tours-clear-x:hover { background: #e2e8f0; color: #0f172a; }
.mmt-tours-filter-field.mmt-has-value .mmt-tours-clear-x { display: block; }
.mmt-tours-filter-field.mmt-has-value .mmt-tours-caret { display: none; }
.mmt-tours-combo-list { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; box-shadow: 0 18px 48px rgba(15,23,42,.14); max-height: 380px; overflow-y: auto; z-index: 50; display: none; padding: 8px; overscroll-behavior: contain; }
.mmt-tours-filter-field.mmt-open .mmt-tours-combo-list { display: block; }
.mmt-tours-combo-option { padding: 12px 14px; font-size: 14px; font-weight: 600; color: #1e293b; cursor: pointer; border-radius: 10px; transition: background .12s,color .12s; }
.mmt-tours-combo-option + .mmt-tours-combo-option { margin-top: 2px; }
.mmt-tours-combo-option:hover { background: #eaf4fa; color: var(--mmt-primary); }
.mmt-tours-combo-option mark { background: transparent; color: inherit; font-weight: 800; }
.mmt-tours-combo-empty { padding: 20px 14px; font-size: 13px; color: #94a3b8; text-align: center; }
.mmt-tours-filter-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 36px; height: 56px; background: var(--mmt-heading); color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .3px; border: 0; border-radius: 48px; cursor: pointer; transition: background .2s; box-shadow: none; white-space: nowrap; }
.mmt-tours-filter-submit::before { content: ""; display: inline-block; width: 18px; height: 18px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='9' cy='9' r='6' stroke='white' stroke-width='2'/%3E%3Cpath d='M14 14L17 17' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: contain; }
.mmt-tours-filter-submit:hover { background: var(--mmt-primary); }
.mmt-tours-filter-submit:active { transform: translateY(1px); }
.mmt-tours-filter-submit:disabled { background: #cbd5e1; cursor: not-allowed; box-shadow: none; }

.mmt-tours-layout { display: grid; grid-template-columns: minmax(0,1fr) 420px; gap: 28px; align-items: start; overflow: visible !important; }
.mmt-tours-main,.mmt-tours-sidebar { min-width: 0; }
.mmt-tours-sidebar { position: relative !important; align-self: stretch !important; overflow: visible !important; min-height: 100% !important; height: auto !important; }
.mmt-tours-sticky-form { position: -webkit-sticky !important; position: sticky !important; top: 96px !important; align-self: flex-start !important; background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 18px; box-shadow: 0 10px 30px rgba(15,23,42,.06); z-index: 20 !important; max-height: calc(100vh - 116px); overflow-y: auto !important; overflow-x: hidden !important; scrollbar-width: thin; }
.mmt-tours-sticky-form::-webkit-scrollbar { width: 6px; }
.mmt-tours-sticky-form::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }
.mmt-tours-sticky-form .wpforms-container,.mmt-tours-sticky-form .wpforms-container-full { margin: 0 !important; }
.mmt-tours-sticky-form .wpforms-field { padding-top: 6px !important; padding-bottom: 6px !important; }
.mmt-tours-sticky-form .wpforms-submit-container { padding-top: 8px !important; margin-top: 0 !important; }
.mmt-tours-sticky-form button[type="submit"],.mmt-tours-sticky-form .wpforms-submit { width: 100% !important; min-height: 46px !important; border-radius: 10px !important; }
.mmt-tours-sticky-form h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.3; font-weight: 700; color: #111827; }
.mmt-tours-sticky-form p { margin: 0 0 18px; font-size: 14px; line-height: 1.7; color: #5b6470; }

.mmt-tours-list { display: flex; flex-direction: column; gap: 24px; }
.mmt-tour-card { display: grid; grid-template-columns: 260px minmax(0,1fr); min-height: 220px; border: 1px solid #e8e8e8; border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.05); transition: transform .25s,box-shadow .25s; overflow: hidden; }
.mmt-tour-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.mmt-tour-card-media { overflow: hidden; }
.mmt-tour-card-media a { display: block; height: 100%; }
.mmt-tour-card-media img { display: block; width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.mmt-tour-card-body { display: flex; flex-direction: column; padding: 22px; min-width: 0; }
.mmt-tour-card-title { margin: 0 0 10px; font-size: 25px; line-height: 1.3; font-weight: 700; }
.mmt-tour-card-title a { text-decoration: none; color: #111; }
.mmt-tour-card-title a:hover { color: var(--mmt-primary); }
.mmt-tour-card-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; }
.mmt-tour-dest-chip { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: #f8fafc; border: 1px solid #e2e8f0; color: var(--mmt-heading) !important; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .2s,border-color .2s,color .2s; }
.mmt-tour-dest-chip:hover { background: #eef6fb; border-color: #cfe3ef; color: var(--mmt-heading) !important; text-decoration: none; }
.mmt-tour-card-excerpt { font-size: 15px; line-height: 1.75; color: #555; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0; }
.mmt-tour-card-footer { margin-top: auto; padding-top: 18px; }
.mmt-tour-card-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 48px; background: var(--mmt-heading); color: #fff !important; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .25s; }
.mmt-tour-card-btn:hover { background: var(--mmt-primary); color: #fff !important; text-decoration: none; }

.mmt-tours-load-more-wrap { text-align: center; margin-top: 34px; margin-bottom: 10px; }
.mmt-tours-load-more-btn { padding: 14px 24px; border: 0; border-radius: 48px; background: var(--mmt-heading) !important; color: #fff !important; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; }
.mmt-tours-load-more-btn:hover { background: var(--mmt-primary) !important; }
.mmt-tours-load-more-btn:focus, .mmt-tours-load-more-btn:active, .mmt-tours-load-more-btn:focus-visible { background: var(--mmt-heading) !important; outline: none !important; }
.mmt-tours-load-more-btn.loading { opacity: .65; pointer-events: none; }
.mmt-tours-hidden-card { display: none !important; }

.mmt-tours-seo-wrap { margin-top: 34px; }
.mmt-tours-seo-block { background: #fff; border: 1px solid #e7eef3; border-radius: 22px; padding: 30px; box-shadow: 0 10px 30px rgba(15,79,107,.06); }
.mmt-tours-seo-block + .mmt-tours-seo-block { margin-top: 20px; }
.mmt-tours-seo-title { margin: 0 0 14px; font-size: 28px; line-height: 1.25; font-weight: 700; color: var(--mmt-heading); }
.mmt-tours-seo-text { margin: 0; font-size: 16px; line-height: 1.8; color: #495866; }
.mmt-tours-trust-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 22px; margin-top: 8px; }
.mmt-tours-trust-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.7; color: #495866; }
.mmt-tours-trust-icon { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 999px; background: #e9f6fb; color: var(--mmt-heading); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-top: 2px; }
.mmt-tours-faq-list { display: grid; gap: 14px; }
.mmt-tours-faq-item { border: 1px solid #e7eef3; border-radius: 18px; padding: 22px 22px 18px; background: #fbfdff; }
.mmt-tours-faq-q { margin: 0 0 8px; font-size: 24px; line-height: 1.45; font-weight: 700; color: var(--mmt-heading); }
.mmt-tours-faq-a { margin: 0; font-size: 15px; line-height: 1.8; color: #556574; }
.mmt-tours-mobile-cta { display: none; }

@media (max-width: 1199px) { .mmt-tours-layout { grid-template-columns: 1fr !important; } .mmt-tours-sticky-form { position: sticky !important; top: 15px; } }
@media (max-width: 991px) { .mmt-tours-trust-grid { grid-template-columns: 1fr; } }
@media (max-width: 980px) { .mmt-tours-filter-bar { grid-template-columns: 1fr; gap: 14px; padding: 16px; } .mmt-tours-filter-submit { width: 100%; height: 56px; } }
@media (max-width: 768px) {
    .mmt-tour-card { grid-template-columns: 1fr; min-height: auto; }
    .mmt-tour-card-media a { display: block; aspect-ratio: 16/9; }
    .mmt-tour-card-media img { height: auto; min-height: unset; aspect-ratio: 16/9; }
    .mmt-tour-card-body { padding: 14px 14px 16px; }
    .mmt-tour-card-title { font-size: 21px !important; line-height: 1.28; margin-bottom: 9px; }
    .mmt-tour-card-chips { gap: 7px; margin-bottom: 10px; }
    .mmt-tour-dest-chip { font-size: 12px; padding: 6px 10px; }
    .mmt-tour-card-excerpt { font-size: 14px; line-height: 1.65; }
    .mmt-tour-card-footer { padding-top: 14px; }
    .mmt-tour-card-btn { width: 100%; padding: 11px 12px; font-size: 14px; justify-content: center; }
    .mmt-tours-load-more-wrap { margin-top: 24px; }
    .mmt-tours-load-more-btn { width: 100%; min-height: 50px; }
    .mmt-tours-seo-wrap { margin-top: 26px; }
    .mmt-tours-seo-block { padding: 20px 16px !important; border-radius: 18px !important; }
    .mmt-tours-seo-title { font-size: 21px !important; line-height: 1.3; }
    .mmt-tours-seo-text,.mmt-tours-faq-a,.mmt-tours-trust-item { font-size: 14px; line-height: 1.7; }
    .mmt-tours-faq-q { font-size: 16px !important; }
    .mmt-tours-sidebar { margin-top: 26px; display: block; }
    .mmt-tours-sticky-form { position: static !important; top: auto !important; padding: 20px 16px; border-radius: 18px; }
    .mmt-tours-sticky-form h3 { font-size: 22px; }
    .mmt-tours-sticky-form p { font-size: 14px; line-height: 1.65; }
    body.mmt-custom-tours-archive { padding-bottom: 78px; }
    .mmt-tours-shell { padding: 22px 14px 42px; }
    .mmt-tours-h1-wrap { margin-bottom: 16px; }
    .mmt-tours-h1 { font-size: 26px !important; line-height: 1.22; margin-bottom: 8px; }
    .mmt-tours-h1-sub { font-size: 14px; line-height: 1.65; }
    .mmt-tours-filter-bar-wrap { margin-bottom: 22px; z-index: 100; }
    .mmt-tours-filter-bar { grid-template-columns: 1fr; gap: 14px; padding: 16px; border-radius: 18px; box-shadow: 0 10px 28px rgba(15,23,42,.09); }
    .mmt-tours-filter-field { width: 100%; min-width: 0; padding: 0; border: 0 !important; background: transparent !important; gap: 7px; }
    .mmt-tours-filter-field > label { font-size: 10.5px; letter-spacing: 1.3px; padding: 0 2px; }
    .mmt-tours-combo-input { width: 100%; height: 54px; padding: 0 54px 0 16px; font-size: 15.5px; border: 1.5px solid #d8e3ec; border-radius: 12px; box-sizing: border-box; }
    .mmt-tours-combo-input::placeholder { font-size: 14.5px; }
    .mmt-tours-filter-field .mmt-tours-caret { right: 10px; bottom: 9px; width: 36px; height: 36px; }
    .mmt-tours-filter-field .mmt-tours-clear-x { right: 13px; bottom: 13px; width: 28px; height: 28px; line-height: 28px; }
    .mmt-tours-combo-list { position: static; margin-top: 10px; max-height: 280px; overflow-y: auto; border-radius: 12px; padding: 8px; overscroll-behavior: contain; }
    .mmt-tours-combo-option { padding: 13px 12px; font-size: 14.5px; line-height: 1.35; border-radius: 9px; }
    .mmt-tours-filter-submit { width: 100%; height: 54px; padding: 0 18px; border-radius: 48px; font-size: 15.5px; }
    .mmt-tours-mobile-cta { display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 99999; height: 52px; align-items: center; justify-content: center; background: var(--mmt-heading); color: #fff !important; border-radius: 48px; font-size: 15px; font-weight: 800; text-decoration: none !important; box-shadow: 0 12px 28px rgba(15,23,42,.24); }
    .mmt-tours-mobile-cta:active { transform: translateY(1px); }
}
@media (max-width: 420px) { .mmt-tours-shell { padding-left: 12px; padding-right: 12px; } .mmt-tours-h1 { font-size: 24px !important; } .mmt-tours-filter-bar { padding: 12px; } .mmt-tour-card-title { font-size: 20px !important; } }
@media (min-width: 1200px) { .mmt-tours-sidebar { width: 420px !important; max-width: 420px !important; } .mmt-tours-sticky-form { top: 96px !important; max-height: calc(100vh - 116px) !important; overflow-y: auto !important; } }
@media (min-width: 1200px) and (max-width: 1280px) { .mmt-tours-layout { grid-template-columns: minmax(0,1fr) 380px !important; gap: 22px !important; } .mmt-tours-sidebar { width: 380px !important; max-width: 380px !important; } .mmt-tours-sticky-form { padding: 16px !important; } .mmt-tours-sticky-form h3 { font-size: 21px !important; margin-bottom: 6px !important; } .mmt-tours-sticky-form p { font-size: 13px !important; line-height: 1.55 !important; margin-bottom: 10px !important; } }


/* =============================================================================
   7. MMT Search Filters — Shared Filter & Card UI (Clinics + Procedures)
   ============================================================================= */

.mmt-filter-bar-wrap { margin: 0 0 36px; position: relative; z-index: 30; }
.mmt-filter-bar { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 16px; background: #fff; border-radius: 18px; box-shadow: 0 2px 4px rgba(15,23,42,.03),0 16px 40px rgba(15,23,42,.07); padding: 18px; border: 1px solid #e8edf2; position: relative; }
.mmt-filter-field { position: relative; display: flex; flex-direction: column; gap: 8px; min-width: 0; padding: 0; background: transparent !important; }
.mmt-filter-field > label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #6b7a89; margin: 0; padding: 0 2px; line-height: 1; pointer-events: none; }
.mmt-combo-input { width: 100%; box-sizing: border-box; height: 56px; padding: 0 56px 0 18px; border: 1.5px solid #d8e3ec; border-radius: 12px; background: #fff; font-size: 15.5px; font-weight: 600; color: #0f172a; outline: none; font-family: inherit; letter-spacing: -.1px; transition: border-color .2s,box-shadow .2s,background .2s; }
.mmt-combo-input::placeholder { color: #94a3b8; font-weight: 500; font-size: 15px; }
.mmt-combo-input:hover { border-color: #b8c8d6; }
.mmt-combo-input:focus,.mmt-filter-field.mmt-open .mmt-combo-input { border-color: var(--mmt-primary); box-shadow: 0 0 0 3px rgba(28,168,203,.15); background: #fff; }
.mmt-filter-field .mmt-caret { position: absolute; right: 10px; bottom: 10px; width: 36px; height: 36px; cursor: pointer; border-radius: 50%; background-color: #f1f6fa; border: 1px solid #e3ecf3; display: flex; align-items: center; justify-content: center; transition: background-color .25s,border-color .25s,transform .3s cubic-bezier(.4,0,.2,1); z-index: 4; }
.mmt-filter-field .mmt-caret::after { content: ""; display: block; width: 10px; height: 10px; border-right: 2px solid var(--mmt-heading); border-bottom: 2px solid var(--mmt-heading); transform: translateY(-3px) rotate(45deg); }
.mmt-filter-field:hover .mmt-caret { background-color: #e6f1f8; border-color: #cfe1ed; }
.mmt-filter-field.mmt-open .mmt-caret { transform: rotate(180deg); background-color: var(--mmt-heading); border-color: var(--mmt-heading); }
.mmt-filter-field.mmt-open .mmt-caret::after { border-right-color: #fff; border-bottom-color: #fff; }
.mmt-filter-field .mmt-clear-x { position: absolute; right: 14px; bottom: 14px; width: 28px; height: 28px; border-radius: 50%; background: #f1f5f9; color: #64748b; font-size: 14px; line-height: 28px; text-align: center; cursor: pointer; display: none; z-index: 5; font-weight: 700; user-select: none; transition: background .15s,color .15s; }
.mmt-filter-field .mmt-clear-x:hover { background: #e2e8f0; color: #0f172a; }
.mmt-filter-field.mmt-has-value .mmt-clear-x { display: block; }
.mmt-filter-field.mmt-has-value .mmt-caret { display: none; }
.mmt-combo-list { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; box-shadow: 0 18px 48px rgba(15,23,42,.14); max-height: 380px; overflow-y: auto; z-index: 50; display: none; padding: 8px; overscroll-behavior: contain; }
.mmt-filter-field.mmt-open .mmt-combo-list { display: block; }
.mmt-combo-option { padding: 12px 14px; font-size: 14px; font-weight: 600; color: #1e293b; cursor: pointer; border-radius: 10px; transition: background .12s,color .12s; }
.mmt-combo-option.mmt-is-parent { font-weight: 700; color: var(--mmt-heading); font-size: 14.5px; }
.mmt-combo-option.mmt-is-child { padding-left: 42px; position: relative; font-weight: 500; color: #475569; font-size: 13.5px; }
.mmt-combo-option.mmt-is-child::before { content: ''; position: absolute; left: 22px; top: -2px; bottom: 50%; width: 1px; background: #cbd5e1; }
.mmt-combo-option.mmt-is-child::after { content: ''; position: absolute; left: 22px; top: 50%; width: 14px; height: 1px; background: #cbd5e1; }
.mmt-combo-option + .mmt-combo-option { margin-top: 2px; }
.mmt-combo-option:hover { background: #eaf4fa; color: var(--mmt-primary); }
.mmt-combo-option.mmt-is-parent:hover { background: #d8ecf6; color: var(--mmt-primary); }
.mmt-combo-option mark { background: transparent; color: inherit; font-weight: 800; }
.mmt-combo-empty { padding: 20px 14px; font-size: 13px; color: #94a3b8; text-align: center; }
.mmt-filter-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 36px; height: 56px; background: var(--mmt-heading); color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .3px; border: 0; border-radius: 48px; cursor: pointer; transition: background .2s; box-shadow: none; white-space: nowrap; }
.mmt-filter-submit::before { content: ""; display: inline-block; width: 18px; height: 18px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='9' cy='9' r='6' stroke='white' stroke-width='2'/%3E%3Cpath d='M14 14L17 17' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: contain; }
.mmt-filter-submit:hover { background: var(--mmt-primary); }
.mmt-filter-submit:active { transform: translateY(1px); }
.mmt-filter-submit:disabled { background: #cbd5e1; cursor: not-allowed; box-shadow: none; }

.mmt-sticky-form-box { position: -webkit-sticky !important; position: sticky !important; top: 96px !important; align-self: flex-start !important; background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 18px; box-shadow: 0 10px 30px rgba(15,23,42,.06); z-index: 20 !important; max-height: calc(100vh - 116px); overflow-y: auto !important; overflow-x: hidden !important; scrollbar-width: thin; }
.mmt-sticky-form-box::-webkit-scrollbar { width: 6px; }
.mmt-sticky-form-box::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }
.mmt-sticky-form-box .wpforms-container,.mmt-sticky-form-box .wpforms-container-full { margin: 0 !important; }
.mmt-sticky-form-box .wpforms-field { padding-top: 6px !important; padding-bottom: 6px !important; }
.mmt-sticky-form-box .wpforms-submit-container { padding-top: 8px !important; margin-top: 0 !important; }
.mmt-sticky-form-box button[type="submit"],.mmt-sticky-form-box .wpforms-submit { width: 100% !important; min-height: 46px !important; border-radius: 10px !important; }
.mmt-sticky-form-box h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.3; font-weight: 700; color: #111827; }
.mmt-sticky-form-box p { margin: 0 0 18px; font-size: 14px; line-height: 1.7; color: #5b6470; }

.mmt-load-more-wrap { text-align: center; margin-top: 34px; margin-bottom: 10px; }
.mmt-load-more-btn { padding: 14px 24px; border: 0; border-radius: 48px; background: var(--mmt-heading) !important; color: #fff !important; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; }
.mmt-load-more-btn:hover { background: var(--mmt-primary) !important; }
.mmt-load-more-btn:focus, .mmt-load-more-btn:active, .mmt-load-more-btn:focus-visible { background: var(--mmt-heading) !important; outline: none !important; }
.mmt-load-more-btn.loading { opacity: .65; pointer-events: none; }
.mmt-hidden-card { display: none !important; }

.mmt-seo-block-wrap { margin-top: 34px; }
.mmt-seo-block { background: #fff; border: 1px solid #e7eef3; border-radius: 22px; padding: 30px; box-shadow: 0 10px 30px rgba(15,79,107,.06); }
.mmt-seo-block + .mmt-seo-block { margin-top: 20px; }
.mmt-seo-title { margin: 0 0 14px; font-size: 28px; line-height: 1.25; font-weight: 700; color: var(--mmt-heading); }
.mmt-seo-text { margin: 0; font-size: 16px; line-height: 1.8; color: #495866; }
.mmt-trust-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 22px; margin-top: 8px; }
.mmt-trust-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.7; color: #495866; }
.mmt-trust-item-icon { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 999px; background: #e9f6fb; color: var(--mmt-heading); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-top: 2px; }
.mmt-faq-list { display: grid; gap: 14px; }
.mmt-faq-item { border: 1px solid #e7eef3; border-radius: 18px; padding: 22px 22px 18px; background: #fbfdff; }
.mmt-faq-question { margin: 0 0 8px; font-size: 24px; line-height: 1.45; font-weight: 700; color: var(--mmt-heading); }
.mmt-faq-answer { margin: 0; font-size: 15px; line-height: 1.8; color: #556574; }
.mmt-mobile-quote-cta { display: none; }

.mmt-card-title { margin: 0 0 10px; font-size: 25px; line-height: 1.3; font-weight: 700; }
.mmt-card-title a { text-decoration: none; color: #111; }
.mmt-card-title a:hover { color: var(--mmt-primary); }
.mmt-summary-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; }
.mmt-summary-chip,.mmt-tax-pill,.mmt-related-link { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: #f2f7fb; border: 1px solid #d8e8f3; color: var(--mmt-heading) !important; font-size: 13px; font-weight: 500; text-decoration: none; transition: background .2s,border-color .2s,color .2s; }
.mmt-summary-chip:hover,.mmt-tax-pill:hover,.mmt-related-link:hover { background: var(--mmt-primary); border-color: var(--mmt-primary); color: #fff !important; text-decoration: none; }
.mmt-card-excerpt { font-size: 15px; line-height: 1.75; color: #555; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 991px) { .mmt-trust-grid { grid-template-columns: 1fr; } }
@media (max-width: 980px) { .mmt-filter-bar { grid-template-columns: 1fr; gap: 14px; padding: 16px; } .mmt-filter-submit { width: 100%; height: 56px; } }
@media (max-width: 768px) {
    .mmt-filter-bar-wrap { margin-bottom: 22px; z-index: 100; }
    .mmt-filter-bar { grid-template-columns: 1fr; gap: 14px; padding: 16px; border-radius: 18px; box-shadow: 0 10px 28px rgba(15,23,42,.09); }
    .mmt-filter-field { width: 100%; min-width: 0; padding: 0; border: 0 !important; background: transparent !important; gap: 7px; }
    .mmt-filter-field > label { font-size: 10.5px; letter-spacing: 1.3px; padding: 0 2px; }
    .mmt-combo-input { width: 100%; height: 54px; padding: 0 54px 0 16px; font-size: 15.5px; border: 1.5px solid #d8e3ec; border-radius: 12px; box-sizing: border-box; }
    .mmt-combo-input::placeholder { font-size: 14.5px; }
    .mmt-filter-field .mmt-caret { right: 10px; bottom: 9px; width: 36px; height: 36px; }
    .mmt-filter-field .mmt-clear-x { right: 13px; bottom: 13px; width: 28px; height: 28px; line-height: 28px; }
    .mmt-combo-list { position: static; margin-top: 10px; max-height: 280px; overflow-y: auto; border-radius: 12px; padding: 8px; overscroll-behavior: contain; }
    .mmt-combo-option { padding: 13px 12px; font-size: 14.5px; line-height: 1.35; border-radius: 9px; }
    .mmt-combo-option.mmt-is-child { padding-left: 38px; }
    .mmt-combo-option.mmt-is-child::before,.mmt-combo-option.mmt-is-child::after { left: 18px; }
    .mmt-filter-submit { width: 100%; height: 54px; padding: 0 18px; border-radius: 48px; font-size: 15.5px; }
    .mmt-seo-block-wrap { margin-top: 26px; }
    .mmt-seo-block { padding: 20px 16px !important; border-radius: 18px !important; }
    .mmt-seo-title { font-size: 21px !important; line-height: 1.3; }
    .mmt-seo-text,.mmt-faq-answer,.mmt-trust-item { font-size: 14px; line-height: 1.7; }
    .mmt-faq-question { font-size: 16px !important; }
    .mmt-load-more-wrap { margin-top: 24px; }
    .mmt-load-more-btn { width: 100%; min-height: 50px; }
    .mmt-card-title { font-size: 21px !important; line-height: 1.28; margin-bottom: 9px; }
    .mmt-summary-chip,.mmt-tax-pill { font-size: 12px; padding: 6px 10px; }
    .mmt-sticky-form-box { padding: 20px 16px; border-radius: 18px; }
    .mmt-sticky-form-box h3 { font-size: 22px; }
    .mmt-sticky-form-box p { font-size: 14px; line-height: 1.65; }
    .mmt-mobile-quote-cta { display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 99999; height: 52px; align-items: center; justify-content: center; background: var(--mmt-heading); color: #fff !important; border-radius: 48px; font-size: 15px; font-weight: 800; text-decoration: none !important; box-shadow: 0 12px 28px rgba(15,23,42,.24); }
    .mmt-mobile-quote-cta:active { transform: translateY(1px); }
}


/* =============================================================================
   8. MMT Search Filters — Clinics Archive
   ============================================================================= */

body.mmt-custom-clinics-archive .breadcrumb-wrapper,body.mmt-custom-clinics-archive .breadcrumbs,body.mmt-custom-clinics-archive .breadcrumb,body.mmt-custom-clinics-archive .page-title,body.mmt-custom-clinics-archive .entry-header,body.mmt-custom-clinics-archive .archive-header,body.mmt-custom-clinics-archive .page-header,body.mmt-custom-clinics-archive .sidebar-area,body.mmt-custom-clinics-archive .widget-area,body.mmt-custom-clinics-archive .navigation.pagination,body.mmt-custom-clinics-archive .nav-links,body.mmt-custom-clinics-archive .pagination,body.mmt-custom-clinics-archive .page-numbers { display: none !important; }
body.mmt-custom-clinics-archive,body.mmt-custom-clinics-archive #page,body.mmt-custom-clinics-archive .site,body.mmt-custom-clinics-archive .site-content,body.mmt-custom-clinics-archive .site-main,body.mmt-custom-clinics-archive #primary,body.mmt-custom-clinics-archive #main,body.mmt-custom-clinics-archive main,body.mmt-custom-clinics-archive .content-area,body.mmt-custom-clinics-archive .entry-content,body.mmt-custom-clinics-archive .wrapper,body.mmt-custom-clinics-archive .container { overflow: visible !important; }

.mmt-archive-shell { max-width: 1920px; margin: 0 auto; padding: 30px 40px 50px; box-sizing: border-box; overflow: visible !important; }
.mmt-clinic-h1-wrap { margin: 0 0 26px; }
.mmt-clinic-h1 { font-size: 38px; line-height: 1.2; font-weight: 700; color: var(--mmt-heading); margin: 0 0 10px; letter-spacing: -.5px; }
.mmt-clinic-h1-sub { margin: 0; font-size: 16px; line-height: 1.7; color: #5b6470; max-width: 880px; }

.mmt-archive-layout { display: grid; grid-template-columns: minmax(0,1fr) 420px; gap: 28px; align-items: start; overflow: visible !important; }
.mmt-archive-main,.mmt-archive-sidebar { min-width: 0; }
.mmt-archive-sidebar { position: relative !important; align-self: stretch !important; overflow: visible !important; min-height: 100% !important; height: auto !important; }

.mmt-archive-shell .mmt-clinic-list { display: flex; flex-direction: column; gap: 24px; }
.mmt-archive-shell .mmt-clinic-card { display: grid; grid-template-columns: 260px minmax(0,1fr); grid-template-rows: 1fr auto; grid-template-areas: "media info" "btn counts"; padding: 0; gap: 0; border: 1px solid #e8e8e8; border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.05); transition: transform .25s,box-shadow .25s; overflow: hidden; }
.mmt-archive-shell .mmt-clinic-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.mmt-archive-shell .mmt-clinic-card .mmt-card-media { grid-area: media; background: #fff; padding: 14px 0 8px 14px; display: flex; align-items: flex-start; }
.mmt-archive-shell .mmt-clinic-card .mmt-card-media a { display: block; width: 100%; border-radius: 10px; overflow: hidden; line-height: 0; }
.mmt-archive-shell .mmt-clinic-card .mmt-card-media img { display: block; width: 100%; height: 185px; object-fit: cover; }
.mmt-archive-shell .mmt-card-btn-wrap { grid-area: btn; align-self: start; display: flex; align-items: flex-start; padding: 16px 0 22px 14px; }
.mmt-archive-shell .mmt-clinic-card .mmt-card-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 13px 18px; border-radius: 48px; background: var(--mmt-heading); color: #fff !important; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .25s; box-sizing: border-box; }
.mmt-archive-shell .mmt-clinic-card .mmt-card-btn:hover { background: var(--mmt-primary); color: #fff !important; text-decoration: none; }
.mmt-archive-shell .mmt-card-info { grid-area: info; display: flex; flex-direction: column; min-width: 0; padding: 22px 22px 16px; }
.mmt-archive-shell .mmt-clinic-card .mmt-card-excerpt { margin-bottom: 0; }
.mmt-archive-shell .mmt-card-counts { grid-area: counts; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 22px 22px; align-content: start; }
.mmt-archive-shell .mmt-card-counts.mmt-counts-single { grid-template-columns: 1fr; }
.mmt-archive-shell .mmt-count-box { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.mmt-archive-shell .mmt-count-toggle { width: 100%; display: flex; align-items: center; gap: 9px; background: #f8fafc !important; border: none; padding: 11px 12px; font-size: 13px; font-weight: 700; color: #1e293b !important; cursor: pointer; text-align: left; transition: background .2s,color .2s; line-height: 1.3; }
.mmt-archive-shell .mmt-count-toggle:hover { background: var(--mmt-primary) !important; color: #fff !important; }
.mmt-archive-shell .mmt-count-toggle:hover .mmt-count-icon { background: rgba(255,255,255,.2); color: #fff; }
.mmt-archive-shell .mmt-count-toggle:hover .mmt-count-chevron { color: #fff; }
.mmt-archive-shell .mmt-count-box.mmt-count-open .mmt-count-toggle { background: var(--mmt-primary) !important; color: #fff !important; }
.mmt-archive-shell .mmt-count-box.mmt-count-open .mmt-count-toggle .mmt-count-icon { background: rgba(255,255,255,.2); color: #fff; }
.mmt-archive-shell .mmt-count-box.mmt-count-open .mmt-count-toggle .mmt-count-chevron { color: #fff; }
.mmt-archive-shell .mmt-count-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: #e1f0f9; color: var(--mmt-heading); display: flex; align-items: center; justify-content: center; transition: background .2s,color .2s; }
.mmt-archive-shell .mmt-count-text { flex: 1; min-width: 0; }
.mmt-archive-shell .mmt-count-chevron { flex-shrink: 0; color: #94a3b8; display: flex; align-items: center; transition: transform .25s,color .2s; }
.mmt-archive-shell .mmt-count-box.mmt-count-open .mmt-count-chevron { transform: rotate(180deg); }
.mmt-archive-shell .mmt-count-panel { padding: 10px 12px 12px; border-top: 1px solid #e2e8f0; display: none; }
.mmt-archive-shell .mmt-count-box.mmt-count-open .mmt-count-panel { display: block; }
.mmt-archive-shell .mmt-count-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.mmt-archive-shell .mmt-count-pill { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px; background: #f2f7fb; border: 1px solid #d8e8f3; color: var(--mmt-heading) !important; font-size: 12px; font-weight: 500; text-decoration: none; transition: all .2s; }
.mmt-archive-shell .mmt-count-pill:hover { background: var(--mmt-primary); border-color: var(--mmt-primary); color: #fff !important; text-decoration: none; }

@media (max-width: 1199px) { .mmt-archive-layout { grid-template-columns: 1fr !important; } body.mmt-custom-clinics-archive .mmt-sticky-form-box { position: sticky !important; top: 15px; } }
@media (max-width: 768px) {
    body.mmt-custom-clinics-archive { padding-bottom: 78px; }
    .mmt-archive-shell { padding: 22px 14px 42px; }
    .mmt-clinic-h1-wrap { margin-bottom: 16px; }
    .mmt-clinic-h1 { font-size: 26px !important; line-height: 1.22; margin-bottom: 8px; }
    .mmt-clinic-h1-sub { font-size: 14px; line-height: 1.65; }
    .mmt-archive-sidebar { margin-top: 26px; display: block; }
    .mmt-archive-shell .mmt-clinic-card { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; grid-template-areas: "media" "info" "counts" "btn"; border-radius: 16px; }
    .mmt-archive-shell .mmt-clinic-card .mmt-card-media { padding: 10px 10px 6px 10px; }
    .mmt-archive-shell .mmt-clinic-card .mmt-card-media a { aspect-ratio: 16/9; }
    .mmt-archive-shell .mmt-clinic-card .mmt-card-media img { height: auto; aspect-ratio: 16/9; }
    .mmt-archive-shell .mmt-card-info { padding: 14px 14px 10px; }
    .mmt-archive-shell .mmt-card-counts { padding: 10px 14px 14px; gap: 10px; grid-template-columns: 1fr; }
    .mmt-archive-shell .mmt-card-btn-wrap { padding: 0 10px 14px 10px; }
    .mmt-archive-shell .mmt-clinic-card .mmt-card-btn { padding: 11px 12px; font-size: 14px; }
}
@media (max-width: 420px) { .mmt-archive-shell { padding-left: 12px; padding-right: 12px; } .mmt-clinic-h1 { font-size: 24px !important; } .mmt-filter-bar { padding: 12px; } }
@media (min-width: 1200px) { .mmt-archive-sidebar { width: 420px !important; max-width: 420px !important; } .mmt-sticky-form-box { top: 96px !important; max-height: calc(100vh - 116px) !important; overflow-y: auto !important; } }
@media (min-width: 1200px) and (max-width: 1280px) { .mmt-archive-layout { grid-template-columns: minmax(0,1fr) 380px !important; gap: 22px !important; } .mmt-archive-sidebar { width: 380px !important; max-width: 380px !important; } .mmt-sticky-form-box { padding: 16px !important; } .mmt-sticky-form-box h3 { font-size: 21px !important; margin-bottom: 6px !important; } .mmt-sticky-form-box p { font-size: 13px !important; line-height: 1.55 !important; margin-bottom: 10px !important; } }


/* =============================================================================
   8b. Thank You Page — force white text in first hero section
   ============================================================================= */

body.page-id-10277 .elementor-10277 .elementor-top-section:first-of-type *,
body.page-id-10277 .elementor-10277 > .e-con:first-child * { color: #fff !important; }

/* =============================================================================
   9. MMT Search Filters — Procedures Page
   ============================================================================= */

body.page-id-3611 .entry-content,body.page-id-3611 .elementor-location-single,body.page-id-3611 .wpte-trip-listing,body.page-id-3611 .trip-content-area,body.page-id-3611 .page-header,body.page-id-3611 .entry-header,body.page-id-3611 .sidebar-area,body.page-id-3611 .widget-area,body.page-id-3611 .navigation.pagination,body.page-id-3611 .nav-links,body.page-id-3611 .pagination,body.page-id-3611 .page-numbers { display: none !important; }
body.page-id-3611,body.page-id-3611 #page,body.page-id-3611 .site,body.page-id-3611 .site-content,body.page-id-3611 .site-main,body.page-id-3611 #primary,body.page-id-3611 #main,body.page-id-3611 main,body.page-id-3611 .content-area,body.page-id-3611 .entry-content,body.page-id-3611 .wrapper,body.page-id-3611 .container { overflow: visible !important; }

.mmt-proc-shell { max-width: 1920px; margin: 0 auto; padding: 30px 40px 50px; box-sizing: border-box; overflow: visible !important; }
.mmt-proc-h1-wrap { margin: 0 0 26px; }
.mmt-proc-h1 { font-size: 38px; line-height: 1.2; font-weight: 700; color: var(--mmt-heading); margin: 0 0 10px; letter-spacing: -.5px; }
.mmt-proc-h1-sub { margin: 0; font-size: 16px; line-height: 1.7; color: #5b6470; max-width: 900px; }

.mmt-proc-layout { display: grid; grid-template-columns: minmax(0,1fr) 420px; gap: 28px; align-items: start; overflow: visible !important; }
.mmt-proc-main,.mmt-proc-sidebar { min-width: 0; }
.mmt-proc-sidebar { position: relative !important; align-self: stretch !important; overflow: visible !important; min-height: 100% !important; height: auto !important; }
.mmt-proc-list { display: flex; flex-direction: column; gap: 24px; }

.mmt-proc-card { display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 22px; padding: 20px; border: 1px solid #e8e8e8; border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.05); transition: transform .25s,box-shadow .25s; align-items: start; }
.mmt-proc-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.mmt-proc-card .mmt-card-media { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: #f4f4f4; align-self: start; }
.mmt-proc-card .mmt-card-media a { position: absolute; inset: 0; display: block; }
.mmt-proc-card .mmt-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mmt-proc-card .mmt-card-body { display: flex; flex-direction: column; min-width: 0; }
.mmt-proc-card .mmt-card-excerpt { margin-bottom: 18px; }
.mmt-taxonomies { margin-bottom: 16px; }
.mmt-tax-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; flex-wrap: nowrap; }
.mmt-tax-label { flex: 0 0 auto; font-size: 13px; font-weight: 700; color: #222; line-height: 32px; white-space: nowrap; }
.mmt-tax-pills { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.mmt-card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.mmt-proc-card .mmt-card-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 48px; text-decoration: none; font-weight: 700; font-size: 14px; background: var(--mmt-heading); border: 1px solid var(--mmt-heading); color: #fff !important; transition: background .25s,border-color .25s; }
.mmt-proc-card .mmt-card-btn:hover { background: var(--mmt-primary); border-color: var(--mmt-primary); color: #fff !important; }
.mmt-empty { background: #fff; border: 1px solid #e8edf2; border-radius: 18px; padding: 28px; color: #5b6470; font-size: 16px; line-height: 1.7; }

@media (max-width: 1199px) { .mmt-proc-layout { grid-template-columns: 1fr !important; } body.page-id-3611 .mmt-sticky-form-box { position: static !important; max-height: none !important; } }
@media (max-width: 768px) {
    body.page-id-3611 { padding-bottom: 78px; }
    .mmt-proc-shell { padding: 22px 14px 42px; }
    .mmt-proc-h1-wrap { margin-bottom: 16px; }
    .mmt-proc-h1 { font-size: 26px !important; line-height: 1.22; margin-bottom: 8px; }
    .mmt-proc-h1-sub { font-size: 14px; line-height: 1.65; }
    .mmt-proc-card { grid-template-columns: 1fr !important; padding: 14px !important; gap: 14px !important; border-radius: 16px !important; }
    .mmt-proc-card .mmt-card-media { aspect-ratio: 16/9 !important; }
    .mmt-card-excerpt { -webkit-line-clamp: 4; }
    .mmt-tax-row { display: block; }
    .mmt-tax-label { display: block; margin-bottom: 7px; line-height: 1.2 !important; }
    .mmt-proc-card .mmt-card-btn { width: 100%; min-height: 46px; }
}
@media (max-width: 420px) { .mmt-proc-shell { padding-left: 12px; padding-right: 12px; } .mmt-proc-h1 { font-size: 24px !important; } }


/* =============================================================================
   10. MMT SCF Widgets
   ============================================================================= */

.mmt-sec__title { font-size: 1.35rem; font-weight: 700; color: var(--mmt-heading,#113D48); margin: 0 0 20px; padding-bottom: 12px; border-bottom: 2px solid var(--mmt-primary,#1CA8CB); }
.mmt-sec__desc { margin: -8px 0 20px; color: #555; font-size: 0.95rem; }
.mmt-prose { color: #333; line-height: 1.7; }
.mmt-prose p { margin: 0 0 1em; }
.mmt-prose ul,.mmt-prose ol { margin: 0 0 1em; padding-left: 1.5em; }
.mmt-prose li { margin-bottom: 0.4em; }
.mmt-prose strong { font-weight: 600; }
.mmt-prose a { color: var(--mmt-primary,#1CA8CB); }
.mmt-prose iframe { width: 100%; max-width: 100%; aspect-ratio: 16/9; height: auto; border: 0; border-radius: 8px; display: block; margin: 0 0 1em; }
.mmt-prose .wp-block-embed,.mmt-prose figure { margin: 0 0 1.5em; }
.mmt-prose .wp-block-embed__wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.mmt-prose .wp-block-embed__wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: 8px; margin: 0; }

.mmt-gallery { position: relative; background: #0d1f24; line-height: 0; -webkit-user-select: none; user-select: none; min-height: 400px; border-radius: 10px; overflow: hidden; }
.mmt-gallery--slider { height: 520px; }
.mmt-gallery__single-img { width: 100%; height: 520px; object-fit: cover; display: block; }
.mmt-gallery__track { overflow: hidden; width: 100%; height: 100%; }
.mmt-gallery__slides { display: flex; flex-wrap: nowrap; height: 100%; transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.mmt-gallery__slide { min-width: 100%; width: 100%; height: 100%; flex-shrink: 0; overflow: hidden; }
.mmt-gallery__slide img { width: 100%; height: 100% !important; object-fit: cover; display: block; }
.mmt-gallery__arrow { all: unset; box-sizing: border-box; position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; width: 48px !important; height: 48px !important; background: rgba(255,255,255,0.92) !important; border-radius: 50% !important; cursor: pointer; display: flex !important; align-items: center !important; justify-content: center !important; padding: 0 !important; box-shadow: 0 4px 18px rgba(0,0,0,0.22) !important; transition: background 0.2s ease,box-shadow 0.2s ease,transform 0.2s ease !important; z-index: 10 !important; line-height: 0; }
.mmt-gallery__arrow:hover { background: #fff !important; transform: translateY(-50%) scale(1.08) !important; box-shadow: 0 8px 28px rgba(0,0,0,0.3) !important; }
.mmt-gallery__arrow svg { width: 22px; height: 22px; stroke: var(--mmt-heading,#113D48); display: block; flex-shrink: 0; pointer-events: none; }
.mmt-gallery__arrow--prev { left: 16px !important; right: auto !important; }
.mmt-gallery__arrow--next { right: 16px !important; left: auto !important; }
.mmt-gallery__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; line-height: 0; }
.mmt-gallery__dot { all: unset; box-sizing: border-box; display: block !important; width: 9px !important; height: 9px !important; border-radius: 50% !important; background: rgba(255,255,255,0.45) !important; border: 2px solid rgba(255,255,255,0.75) !important; cursor: pointer !important; padding: 0 !important; margin: 0 !important; transition: background 0.2s ease,transform 0.2s ease !important; flex-shrink: 0; }
.mmt-gallery__dot--active,.mmt-gallery__dot:hover { background: #fff !important; transform: scale(1.3) !important; }

.mmt-highlights { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.mmt-highlights__item { display: flex; align-items: flex-start; gap: 10px; background: #f5fbfc; border: 1px solid #d7eef1; border-radius: 8px; padding: 12px 16px; font-size: 0.95rem; line-height: 1.4; color: #222; }
.mmt-highlights__check { flex-shrink: 0; width: 20px; height: 20px; min-width: 20px; background: var(--mmt-primary,#1CA8CB); border-radius: 50%; position: relative; margin-top: 1px; }
.mmt-highlights__check::after { content: ''; position: absolute; top: 3px; left: 6px; width: 5px; height: 9px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg); }

.mmt-faq { display: flex; flex-direction: column; gap: 8px; }
.mmt-faq__item { border: 1px solid #e2ecee; border-radius: 10px; overflow: hidden; background: #fff; }
.mmt-faq__q { all: unset; list-style: none; box-sizing: border-box; display: flex !important; align-items: center !important; justify-content: space-between !important; width: 100% !important; padding: 16px 20px !important; background: #fff !important; color: var(--mmt-heading,#113D48) !important; border-radius: 0 !important; border: none !important; box-shadow: none !important; cursor: pointer; font-family: inherit; font-size: 0.95rem; font-weight: 600; gap: 12px; text-align: left; line-height: 1.4; transition: color 0.15s; -webkit-user-select: none; user-select: none; }
.mmt-faq__q:hover { color: var(--mmt-primary,#1CA8CB) !important; }
.mmt-faq__q::-webkit-details-marker { display: none; }
.mmt-faq__icon { flex-shrink: 0; width: 20px; height: 20px; min-width: 20px; position: relative; background: transparent !important; border: none !important; border-radius: 0 !important; }
.mmt-faq__icon::after { content: ''; position: absolute; top: 3px; left: 4px; width: 10px; height: 10px; border-right: 2px solid var(--mmt-primary,#1CA8CB); border-bottom: 2px solid var(--mmt-primary,#1CA8CB); transform: rotate(45deg); transition: transform 0.22s ease; }
.mmt-faq__item[open] > .mmt-faq__q .mmt-faq__icon::after { transform: rotate(-135deg); top: 7px; }
.mmt-faq__a { display: grid; grid-template-rows: 0fr; overflow: hidden; padding: 0 20px; background: #fff; transition: grid-template-rows 0.3s ease,padding-bottom 0.2s ease; }
.mmt-faq__a > .mmt-prose { min-height: 0; }
.mmt-faq__item[open] > .mmt-faq__a { grid-template-rows: 1fr; padding-bottom: 18px; }

.mmt-itin { display: flex; flex-direction: column; }
.mmt-itin__item { display: grid; grid-template-columns: 80px 1fr; gap: 0 24px; position: relative; padding-bottom: 32px; }
.mmt-itin__item::before { content: ''; position: absolute; left: 39px; top: 38px; bottom: 0; width: 2px; background: #d7eef1; }
.mmt-itin__item:last-child { padding-bottom: 0; }
.mmt-itin__item:last-child::before { display: none; }
.mmt-itin__day-badge { width: 80px; height: 36px; background: var(--mmt-primary,#1CA8CB); color: #fff; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; flex-shrink: 0; position: relative; z-index: 1; }
.mmt-itin__body { padding-top: 4px; }
.mmt-itin__title { font-size: 1rem; font-weight: 700; color: var(--mmt-heading,#113D48); margin: 0 0 8px; }

.mmt-facts { list-style: none; margin: 0; padding: 0; }
.mmt-facts__item { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid #f0f6f7; font-size: .9rem; gap: 6px; }
.mmt-facts__item:last-child { border-bottom: none; padding-bottom: 0; }
.mmt-facts__label-wrap { display: flex; align-items: center; gap: 10px; }
.mmt-facts__icon { width: 32px; height: 32px; min-width: 32px; display: flex; align-items: center; justify-content: center; background: #eef7f9; border-radius: 50%; color: var(--mmt-primary,#1CA8CB); flex-shrink: 0; }
.mmt-facts__icon svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }
.mmt-facts__label { color: #666; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.mmt-facts__value { color: var(--mmt-heading,#113D48); font-weight: 500; text-align: left; padding-left: 42px; line-height: 1.5; }

.mmt-cost { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mmt-cost__col { padding: 20px 22px; border-radius: 8px; }
.mmt-cost__col--inc { background: #f0fbf1; border: 1px solid #c3e6c7; }
.mmt-cost__col--exc { background: #fef5f5; border: 1px solid #f5c6c6; }
.mmt-cost__heading { font-size: 1rem; font-weight: 700; margin: 0 0 12px; }
.mmt-cost__heading--inc { color: #2e7d32; }
.mmt-cost__heading--exc { color: #c62828; }
.mmt-cost__list { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.mmt-cost__list--inc { list-style: disc; color: #2e7d32; }
.mmt-cost__list--exc { list-style: disc; color: #c62828; }
.mmt-cost__item { font-size: 0.9rem; line-height: 1.5; color: #334155; }

.mmt-proc-price-card { text-align: center; }
.mmt-card__price { margin-bottom: 6px; }
.mmt-price-was { display: block; font-size: .9rem; color: #888; margin-bottom: 2px; }
.mmt-price-was s { color: #e53935; }
.mmt-price-now { display: block; font-size: 1.1rem; color: #555; margin-bottom: 4px; }
.mmt-price-now strong { font-size: 2rem; font-weight: 800; color: var(--mmt-heading,#113D48); }
.mmt-card__duration { color: #555; font-size: .9rem; margin: 8px 0 20px; }
.mmt-card__duration-val { font-weight: 700; font-size: 1rem; color: var(--mmt-heading,#113D48); }
.mmt-btn--primary { display: block; width: 100%; padding: 14px 20px; background: var(--mmt-heading,#113D48); color: #fff !important; border: none; border-radius: 48px; font-size: 1rem; font-weight: 700; text-align: center; text-decoration: none; cursor: pointer; transition: background .2s; box-sizing: border-box; }
.mmt-btn--primary:hover,.mmt-btn--primary:focus { background: var(--mmt-primary,#1CA8CB); color: #fff !important; }
.mmt-card__title { font-size: 1rem; font-weight: 700; color: var(--mmt-heading,#113D48); margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid #e0ecee; }

.mmt-map iframe { width: 100%; height: 400px; border: 0; border-radius: 8px; display: block; }

.elementor-widget-mmt-proc-tabs .mmt-tabs__nav { display: flex; border-bottom: 2px solid #e0ecee; margin-bottom: 28px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 0; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__nav::-webkit-scrollbar { display: none; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__btn { all: unset; box-sizing: border-box; display: inline-flex !important; align-items: center; gap: 8px; padding: 12px 22px; margin-bottom: -2px; font-family: inherit; font-size: 0.88rem; font-weight: 600; line-height: 1; letter-spacing: 0.01em; color: #64748b !important; background: transparent !important; border: 0 !important; border-bottom: 3px solid transparent !important; border-radius: 0 !important; box-shadow: none !important; cursor: pointer; white-space: nowrap; transition: color 0.15s ease,border-color 0.15s ease; -webkit-user-select: none; user-select: none; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__icon { display: inline-flex; align-items: center; opacity: 0.65; transition: opacity 0.15s ease; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__icon svg { width: 14px; height: 14px; display: block; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__btn:hover { color: var(--mmt-primary,#1CA8CB) !important; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__btn:hover .mmt-tabs__icon { opacity: 1; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__btn--active { color: var(--mmt-primary,#1CA8CB) !important; border-bottom-color: var(--mmt-primary,#1CA8CB) !important; }
.elementor-widget-mmt-proc-tabs .mmt-tabs__btn--active .mmt-tabs__icon { opacity: 1; }
.mmt-tabs__panel[hidden] { display: none; }
.mmt-tabs__panel { padding: 4px 0 0; }
.mmt-sec__subtitle { font-size: 1.05rem; font-weight: 700; color: var(--mmt-heading,#113D48); margin: 28px 0 14px; }

@media (max-width: 768px) {
    .mmt-highlights { grid-template-columns: 1fr; }
    .mmt-cost { grid-template-columns: 1fr; }
    .mmt-itin__item { grid-template-columns: 70px 1fr; gap: 0 16px; }
    .mmt-gallery--slider { height: 260px; }
    .mmt-gallery__single-img { height: 260px; }
    .mmt-gallery__arrow { width: 38px; height: 38px; }
    .mmt-gallery__arrow svg { width: 18px; height: 18px; }
}


/* =============================================================================
   11. MMT Related Widgets
   ============================================================================= */

.mmt-rw-wrap { clear: both; width: 100%; margin: 56px 0 24px; }
.mmt-rw-section { margin-bottom: 24px; background: #fff; border: 1px solid #e8eef3; border-radius: 16px; padding: 28px; box-shadow: 0 4px 16px rgba(15,55,75,.06); }
.mmt-rw-section:last-child { margin-bottom: 0; }
.mmt-rw-header { margin-bottom: 26px; }
.mmt-rw-heading { font-size: 28px; font-weight: 700; margin: 0; letter-spacing: -0.02em; position: relative; padding-bottom: 14px; }
.mmt-rw-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; border-radius: 3px; background: var(--e-global-color-primary,var(--mmt-primary,#1CA8CB)); }
.mmt-rw-subtitle { font-size: 15px; line-height: 1.55; margin: 14px 0 0; max-width: 820px; opacity: .7; }
.mmt-rw-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.mmt-rw-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e8eef3; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(15,55,75,.07); transition: transform .25s ease,box-shadow .25s ease; }
.mmt-rw-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,55,75,.13); }
.mmt-rw-image { display: block; aspect-ratio: 1/1; background: #f0f4f7; overflow: hidden; }
.mmt-rw-image img { width: 100%; height: 100% !important; object-fit: cover; display: block; transition: transform .4s ease; }
.mmt-rw-card:hover .mmt-rw-image img { transform: scale(1.05); }
.mmt-rw-image-fallback { display: block; width: 100%; height: 100%; }
.mmt-rw-content { display: flex; flex-direction: column; padding: 18px 18px 16px; flex: 1; }
.mmt-rw-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.mmt-rw-pill { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; line-height: 1.4; white-space: nowrap; background: rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.1); }
.mmt-rw-card .mmt-rw-title { font-size: 18px !important; line-height: 1.4; margin: 0 0 10px; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mmt-rw-card .mmt-rw-title a { color: var(--mmt-heading,#113D48) !important; text-decoration: none; transition: color .2s ease; }
.mmt-rw-card .mmt-rw-title a:hover { color: var(--mmt-primary,#1CA8CB) !important; }
.mmt-rw-excerpt { font-size: 13.5px; line-height: 1.6; margin: 0 0 16px; color: #64748b; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mmt-rw-footer { margin-top: auto; }
.mmt-rw-btn { display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px; padding: 13px 18px; border-radius: 48px; background: var(--mmt-heading,#113D48); color: #fff !important; text-decoration: none !important; font-size: 14px; font-weight: 700; line-height: 1; transition: background .2s ease; }
.mmt-rw-btn:hover,.mmt-rw-btn:focus { background: var(--mmt-primary,#1CA8CB); color: #fff !important; }
.mmt-rw-btn:hover .mmt-rw-arrow,.mmt-rw-btn:focus .mmt-rw-arrow { transform: translateX(3px); }
.mmt-rw-arrow { transition: transform .2s ease; flex-shrink: 0; }
.mmt-rw-ci-list { display: flex; flex-direction: column; gap: 16px; max-width: 600px; }
.mmt-rw-ci-card { display: flex; flex-direction: row; align-items: flex-start; gap: 20px; padding: 4px 0; background: transparent; border: none; border-radius: 0; }
.mmt-rw-ci-img { display: block; width: 130px; min-width: 130px; height: 130px; flex-shrink: 0; overflow: hidden; background: #f0f4f7; border-radius: 10px; }
.mmt-rw-ci-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.mmt-rw-ci-card:hover .mmt-rw-ci-img img { transform: scale(1.05); }
.mmt-rw-ci-img-fallback { display: block; width: 100%; height: 100%; background: linear-gradient(135deg,#dff3fb,#f4fbff); }
.mmt-rw-ci-body { display: flex; flex-direction: column; flex: 1; min-width: 0; padding: 6px 0 0 20px; }
.mmt-rw-ci-footer .mmt-rw-btn { display: inline-flex; width: auto; background: transparent; border: 1.5px solid var(--mmt-primary,#1CA8CB); color: var(--mmt-primary,#1CA8CB) !important; padding: 10px 20px; border-radius: 48px; font-size: 14px; transition: background .2s ease,color .2s ease; }
.mmt-rw-ci-footer .mmt-rw-btn:hover { background: var(--mmt-primary,#1CA8CB); color: #fff !important; }
.mmt-rw-ci-dest { display: inline-block; padding: 3px 10px; border-radius: 999px; background: rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.08); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #4a5568; margin-bottom: 10px; width: fit-content; }
.mmt-rw-ci-title { font-size: 17px; font-weight: 700; line-height: 1.35; margin: 0 0 8px; }
.mmt-rw-ci-title a { color: var(--e-global-color-primary,var(--mmt-primary,#1CA8CB)) !important; text-decoration: none; transition: opacity .2s ease; }
.mmt-rw-ci-title a:hover { opacity: .75; }
.mmt-rw-ci-excerpt { font-size: 13.5px; line-height: 1.6; color: #64748b; margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mmt-rw-ci-footer { margin-top: auto; }

@media (max-width: 575px) { .mmt-rw-ci-card { flex-direction: column; gap: 12px; padding: 14px; } .mmt-rw-ci-img { width: 100%; min-width: 0; height: 160px; border-radius: 8px; } }
@media (max-width: 991px) { .mmt-rw-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; } .mmt-rw-heading { font-size: 24px; } }
@media (max-width: 767px) { .mmt-rw-section { padding: 16px; } }
@media (max-width: 575px) { .mmt-rw-wrap { margin: 40px 0 16px; } .mmt-rw-grid { grid-template-columns: 1fr; gap: 18px; } .mmt-rw-heading { font-size: 22px; padding-bottom: 12px; } .mmt-rw-section { margin-bottom: 36px; } .mmt-rw-content { padding: 16px; } }


/* =============================================================================
   12. MMT Tourm Widgets
   ============================================================================= */

/* ── MMT Button ── */
.elementor-widget-mmt-button .mmt-button-wrapper { display: block; }
.elementor-widget-mmt-button .mmt-btn { display: inline-block; text-decoration: none; cursor: pointer; border: none; }
.elementor-widget-mmt-button .mmt-btn:hover { text-decoration: none; }

/* ── MMT Image ── */
.elementor-widget-mmt-image .mmt-image-caption { display: block; margin-top: 6px; }
.elementor-widget-mmt-image .mmt-image-style-one .mmt-image-primary img { max-width: 100%; height: auto; display: block; }
.elementor-widget-mmt-image .mmt-image-style-two { position: relative; display: inline-block; width: 100%; }
.elementor-widget-mmt-image .mmt-image-style-two .mmt-image-primary img { width: 100%; height: auto; display: block; }
.elementor-widget-mmt-image .mmt-image-style-two .mmt-image-video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.elementor-widget-mmt-image .mmt-image-style-three { position: relative; }
.elementor-widget-mmt-image .mmt-image-style-three .mmt-image-primary img { width: 100%; height: auto; display: block; }
.elementor-widget-mmt-image .mmt-image-style-three .mmt-image-secondary { position: absolute; bottom: -30px; right: -20px; width: 55%; max-width: 340px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); border-radius: 6px; overflow: hidden; }
.elementor-widget-mmt-image .mmt-image-style-three .mmt-image-secondary img { width: 100%; height: auto; display: block; }
.elementor-widget-mmt-image .mmt-image-style-three .mmt-image-secondary .mmt-video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.25); text-decoration: none; }
.elementor-widget-mmt-image .mmt-play-icon { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--mmt-heading, #113D48); font-size: 22px; padding-left: 4px; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ── MMT Video ── */
.elementor-widget-mmt-video .mmt-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.elementor-widget-mmt-video .mmt-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── MMT Contact Form ── */
.elementor-widget-mmt-contact-form .mmt-contact-form { display: block; }

/* ── MMT Service Box ── */
.elementor-widget-mmt-service-box .mmt-service-box { display: block; text-decoration: none; color: inherit; }
.elementor-widget-mmt-service-box .mmt-service-box:hover { text-decoration: none; color: inherit; }
.elementor-widget-mmt-service-box .mmt-service-icon img { width: 60px; height: auto; }

/* ── MMT Testimonial ── */
.elementor-widget-mmt-testimonial .mmt-testimonial__author { display: flex; align-items: center; gap: 12px; }
.elementor-widget-mmt-testimonial .mmt-testimonial__avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

/* ── MMT Team Member ── */
.elementor-widget-mmt-team-member .mmt-team-member { display: block; }
.elementor-widget-mmt-team-member .mmt-team-photo { width: 100%; height: auto; display: block; }
.elementor-widget-mmt-team-member .mmt-team-socials { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.elementor-widget-mmt-team-member .mmt-team-social-link { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; text-decoration: none; }

/* ── MMT Counter ── */
.elementor-widget-mmt-counter .mmt-counter { display: block; }

/* ── MMT Features ── */
.elementor-widget-mmt-features .mmt-features-list { display: flex; flex-direction: column; gap: 28px; }
.elementor-widget-mmt-features .mmt-feature-item { display: flex; flex-direction: row; align-items: flex-start; }
.elementor-widget-mmt-features .mmt-feature-link { display: flex; flex-direction: row; align-items: flex-start; text-decoration: none; color: inherit; width: 100%; }
.elementor-widget-mmt-features .mmt-feature-link:hover { text-decoration: none; color: inherit; }
.elementor-widget-mmt-features .mmt-feature-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 56px; height: 56px; min-width: 56px; border-radius: 50%; overflow: hidden; margin-right: 20px; }
.elementor-widget-mmt-features .mmt-feature-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.elementor-widget-mmt-features .mmt-feature-content { flex: 1; min-width: 0; }
.elementor-widget-mmt-features .mmt-feature-title { margin: 0 0 6px; padding: 0; }
.elementor-widget-mmt-features .mmt-feature-desc { margin: 0; padding: 0; }

/* ── MMT Blog ── */
.elementor-widget-mmt-blog .mmt-blog-grid { display: grid; gap: 24px; }
.elementor-widget-mmt-blog .mmt-blog-card { overflow: hidden; border: 1px solid #e0e0e0; border-radius: 6px; }
.elementor-widget-mmt-blog .mmt-blog-card a img { width: 100%; height: 200px; object-fit: cover; display: block; }
.elementor-widget-mmt-blog .mmt-blog-card__body { padding: 20px; }
.elementor-widget-mmt-blog .mmt-blog-card__cat { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mmt-primary, #1CA8CB); }
.elementor-widget-mmt-blog .mmt-blog-card__title { margin: 8px 0; }
.elementor-widget-mmt-blog .mmt-blog-card__title a { text-decoration: none; color: inherit; }
.elementor-widget-mmt-blog .mmt-blog-card__excerpt { color: #555; margin: 0 0 12px; }
.elementor-widget-mmt-blog .mmt-blog-card__footer { display: flex; justify-content: space-between; align-items: center; }
.elementor-widget-mmt-blog .mmt-blog-card__date { font-size: 0.85rem; color: #888; }
.elementor-widget-mmt-blog .mmt-blog-card__more { font-size: 0.9rem; color: var(--mmt-primary, #1CA8CB); text-decoration: none; }

/* ── MMT Destinations ── */
.elementor-widget-mmt-destinations .mmt-destinations-grid { display: grid; gap: 20px; }
.elementor-widget-mmt-destinations .mmt-dest-card { display: block; position: relative; overflow: hidden; border-radius: 6px; height: 280px; text-decoration: none; }
.elementor-widget-mmt-destinations .mmt-dest-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.elementor-widget-mmt-destinations .mmt-dest-card__placeholder { width: 100%; height: 100%; background: #ddd; }
.elementor-widget-mmt-destinations .mmt-dest-card__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); }
.elementor-widget-mmt-destinations .mmt-dest-card__title { margin: 0; color: #fff; font-size: 1.1rem; }
.elementor-widget-mmt-destinations .mmt-dest-card__location { margin: 4px 0 0; color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/* ── MMT Slider ── */
.elementor-widget-mmt-slider .mmt-slider-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.elementor-widget-mmt-slider .mmt-slide-card { overflow: hidden; border-radius: 6px; border: 1px solid #e0e0e0; }
.elementor-widget-mmt-slider .mmt-slide-card__image { width: 100%; height: 220px; object-fit: cover; display: block; }
.elementor-widget-mmt-slider .mmt-slide-card__body { padding: 16px; }
.elementor-widget-mmt-slider .mmt-slide-card__body h4 { margin: 0 0 6px; }
.elementor-widget-mmt-slider .mmt-slide-card__body p { color: #555; margin: 0; }

/* ── MMT Price ── */
.elementor-widget-mmt-price .mmt-price-card { border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; text-align: center; }
.elementor-widget-mmt-price .mmt-price-card__header { padding: 24px 20px; background: #f9f9f9; }
.elementor-widget-mmt-price .mmt-price-card--featured .mmt-price-card__header { background: var(--mmt-primary, #1CA8CB); color: #fff; }
.elementor-widget-mmt-price .mmt-price-card__title { margin: 0 0 12px; }
.elementor-widget-mmt-price .mmt-price-card--featured .mmt-price-card__title { color: #fff; }
.elementor-widget-mmt-price .mmt-price-card__price { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.elementor-widget-mmt-price .mmt-price-card__currency { font-size: 1.2rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.elementor-widget-mmt-price .mmt-price-card__period { font-size: 0.9rem; font-weight: 400; }
.elementor-widget-mmt-price .mmt-price-card__body { padding: 24px 20px; }
.elementor-widget-mmt-price .mmt-price-card__body > p { margin: 0 0 16px; color: #666; }
.elementor-widget-mmt-price .mmt-price-card__features { list-style: none; margin: 0 0 20px; padding: 0; text-align: left; }
.elementor-widget-mmt-price .mmt-price-card__features li { padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.elementor-widget-mmt-price .mmt-price-card__btn { display: inline-block; padding: 12px 28px; background: var(--mmt-primary, #1CA8CB); color: #fff; text-decoration: none; border-radius: 4px; width: 100%; box-sizing: border-box; }

/* ── MMT Resort ── */
.elementor-widget-mmt-resort .mmt-resort-card { overflow: hidden; border-radius: 6px; }
.elementor-widget-mmt-resort .mmt-resort-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.elementor-widget-mmt-resort .mmt-resort-card__body { padding: 20px; }
.elementor-widget-mmt-resort .mmt-resort-card__title { margin: 0 0 6px; }
.elementor-widget-mmt-resort .mmt-resort-card__location { margin: 0 0 8px; color: #666; }
.elementor-widget-mmt-resort .mmt-resort-card__rating { margin: 0 0 8px; color: #f5a623; }
.elementor-widget-mmt-resort .mmt-resort-card__desc { margin: 0 0 12px; color: #444; }
.elementor-widget-mmt-resort .mmt-resort-card__price { margin: 0 0 12px; font-weight: 600; }
.elementor-widget-mmt-resort .mmt-resort-card__btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; background: var(--mmt-primary, #1CA8CB); color: #fff !important; text-decoration: none !important; border-radius: 48px; font-weight: 700; font-size: 15px; transition: background .2s; cursor: pointer; }
.elementor-widget-mmt-resort .mmt-resort-card__btn:hover { background: var(--mmt-heading, #113D48); color: #fff !important; }
.elementor-widget-mmt-resort .mmt-resort-card__list { list-style: none; margin: 0 0 16px; padding: 0; }
.elementor-widget-mmt-resort .mmt-resort-card__list li { display: flex; gap: 8px; padding: 6px 0; font-size: 14px; color: #444; }
.elementor-widget-mmt-resort .mmt-resort-card__list .list-label { font-weight: 600; color: var(--mmt-heading, #113D48); white-space: nowrap; min-width: 110px; }

/* ── MMT Newsletter ── */
.elementor-widget-mmt-newsletter .mmt-newsletter__title { margin-bottom: 8px; }
.elementor-widget-mmt-newsletter .mmt-newsletter__desc { margin-bottom: 16px; color: #555; }
.elementor-widget-mmt-newsletter .mmt-newsletter__form { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.elementor-widget-mmt-newsletter .mmt-newsletter__form input[type="email"] { flex: 1; min-width: 200px; padding: 10px 14px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
.elementor-widget-mmt-newsletter .mmt-newsletter__btn { padding: 10px 24px; background: var(--mmt-primary, #1CA8CB); color: #fff; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; }

/* ── MMT Page Header ── */
.elementor-widget-mmt-page-header .mmt-page-header { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; }
.elementor-widget-mmt-page-header .mmt-page-header__overlay { position: absolute; inset: 0; }
.elementor-widget-mmt-page-header .mmt-page-header__content { position: relative; z-index: 1; padding: 40px 20px; }
.elementor-widget-mmt-page-header .mmt-page-header__title { margin: 0 0 8px; }
.elementor-widget-mmt-page-header .mmt-page-header__subtitle { color: rgba(255,255,255,0.85); margin: 0 0 16px; }
.elementor-widget-mmt-page-header .mmt-page-header__breadcrumb { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.elementor-widget-mmt-page-header .mmt-page-header__breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.elementor-widget-mmt-page-header .mmt-page-header__breadcrumb .mmt-bc-sep { margin: 0 8px; }

/* ── MMT Banner (v1 + v2) ── */
.elementor-widget-mmt-banner .mmt-banner,.elementor-widget-mmt-banner-v2 .mmt-banner { position: relative; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.elementor-widget-mmt-banner .mmt-banner__overlay,.elementor-widget-mmt-banner-v2 .mmt-banner__overlay { position: absolute; inset: 0; }
.elementor-widget-mmt-banner .mmt-banner__content,.elementor-widget-mmt-banner-v2 .mmt-banner__content { position: relative; z-index: 1; padding: 40px 20px; width: 100%; max-width: 900px; }
.elementor-widget-mmt-banner .mmt-banner__subtitle,.elementor-widget-mmt-banner-v2 .mmt-banner__subtitle { color: #fff; margin-bottom: 8px; }
.elementor-widget-mmt-banner .mmt-banner__desc,.elementor-widget-mmt-banner-v2 .mmt-banner__desc { color: #fff; margin: 16px 0; }
.elementor-widget-mmt-banner .mmt-banner__btn { display: inline-block; margin-top: 8px; padding: 12px 28px; background: var(--mmt-primary, #1CA8CB); color: #fff; text-decoration: none; border-radius: 4px; }
.elementor-widget-mmt-banner-v2 .mmt-banner__buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; justify-content: center; }
.elementor-widget-mmt-banner-v2 .mmt-banner__btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; background: var(--mmt-primary, #1CA8CB); color: #fff !important; text-decoration: none !important; border-radius: 48px; font-weight: 700; font-size: 15px; transition: background .2s; cursor: pointer; }
.elementor-widget-mmt-banner-v2 .mmt-banner__btn:hover { background: var(--mmt-heading, #113D48); color: #fff !important; }
.elementor-widget-mmt-banner-v2 .mmt-banner__btn--secondary { background: transparent; border: 2px solid #fff; color: #fff !important; }
.elementor-widget-mmt-banner-v2 .mmt-banner__btn--secondary:hover { background: rgba(255,255,255,.15); }
/* Banner V2 slider */
.elementor-widget-mmt-banner-v2 .mmt-banner-slider { position: relative; overflow: hidden; min-height: 500px; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; pointer-events: none; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: background 0.3s; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__dot.is-active { background: #fff; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(0,0,0,0.35); border: none; color: #fff; font-size: 18px; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__arrow:hover { background: rgba(0,0,0,0.65); }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__arrow--prev { left: 16px; }
.elementor-widget-mmt-banner-v2 .mmt-banner-slider__arrow--next { right: 16px; }

/* ── MMT Brand Logos ── */
.elementor-widget-mmt-brand-logos .mmt-logos-grid { display: grid; gap: 30px; align-items: center; }
.elementor-widget-mmt-brand-logos .mmt-logos-grid__item { display: flex; align-items: center; justify-content: center; }
.elementor-widget-mmt-brand-logos .mmt-logos-grid img { max-width: 100%; height: auto; object-fit: contain; }
.elementor-widget-mmt-brand-logos .mmt-logos-grid img.mmt-logo--grayscale { filter: grayscale(100%); }

/* ── MMT Category List ── */
.elementor-widget-mmt-cat-list .mmt-cat-list-grid { display: grid; gap: 24px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item { padding: 20px; overflow: hidden; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item > a { text-decoration: none; color: inherit; display: block; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item__icon { margin-bottom: 12px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item__icon i { font-size: 2rem; color: var(--mmt-primary, #1CA8CB); }
.elementor-widget-mmt-cat-list .mmt-cat-list-item__icon img { width: 48px; height: 48px; object-fit: contain; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item__title { margin: 0 0 4px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item__count { font-size: 0.85rem; color: #888; }
/* Image mode: clean card grid (base for all styles) */
.elementor-widget-mmt-cat-list .mmt-cat-list-item--image { padding: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.elementor-widget-mmt-cat-list .mmt-cat-list-item__image { overflow: hidden; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item__image img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .3s ease; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item--image:hover .mmt-cat-list-item__image img { transform: scale(1.04); }
.elementor-widget-mmt-cat-list .mmt-cat-list-item--image .mmt-cat-list-item__title { padding: 12px 16px 4px; font-weight: 600; }
.elementor-widget-mmt-cat-list .mmt-cat-list-item--image .mmt-cat-list-item__count { padding: 0 16px 12px; display: block; }
/* Style 2: medium image cards (200 px — same as base, explicit for clarity) */
/* Style 3: horizontal — image left, text right */
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_3 .mmt-cat-list-item--image > a { display: flex; align-items: center; gap: 16px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_3 .mmt-cat-list-item--image .mmt-cat-list-item__image { flex: 0 0 110px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_3 .mmt-cat-list-item--image .mmt-cat-list-item__image img { height: 80px; width: 110px; border-radius: 6px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_3 .mmt-cat-list-item--image .mmt-cat-list-item__title { padding: 0 0 4px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_3 .mmt-cat-list-item--image .mmt-cat-list-item__count { padding: 0; }
/* Style 4: large image with gradient text overlay */
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_4 .mmt-cat-list-item--image { position: relative; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_4 .mmt-cat-list-item--image .mmt-cat-list-item__image { position: relative; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_4 .mmt-cat-list-item--image .mmt-cat-list-item__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%); }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_4 .mmt-cat-list-item--image .mmt-cat-list-item__image img { height: 260px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_4 .mmt-cat-list-item--image .mmt-cat-list-item__title { position: absolute; bottom: 14px; left: 14px; right: 14px; padding: 0; color: #fff; z-index: 2; margin: 0; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_4 .mmt-cat-list-item--image .mmt-cat-list-item__count { position: absolute; bottom: 38px; left: 14px; padding: 0; color: rgba(255,255,255,.75); z-index: 2; }
/* Style 5: large portrait image gallery cards */
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_5 .mmt-cat-list-item--image { background: transparent; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_5 .mmt-cat-list-item--image .mmt-cat-list-item__image { border-radius: 12px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_5 .mmt-cat-list-item--image .mmt-cat-list-item__image img { height: 320px; border-radius: 12px; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_5 .mmt-cat-list-item--image .mmt-cat-list-item__title { padding: 12px 4px 4px; font-weight: 600; }
.elementor-widget-mmt-cat-list .mmt-cat-list-grid--style_5 .mmt-cat-list-item--image .mmt-cat-list-item__count { padding: 0 4px 8px; }

/* ── MMT Category Card ── */
.elementor-widget-mmt-cat .mmt-cat-card { overflow: hidden; border-radius: 6px; display: block; }
.elementor-widget-mmt-cat .mmt-cat-card > a { text-decoration: none; color: inherit; display: block; position: relative; }
.elementor-widget-mmt-cat .mmt-cat-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.elementor-widget-mmt-cat .mmt-cat-card__placeholder { width: 100%; height: 220px; background: #e0e0e0; }
.elementor-widget-mmt-cat .mmt-cat-card__body { padding: 16px; background: #fff; }
.elementor-widget-mmt-cat .mmt-cat-card__title { margin: 0 0 4px; }
.elementor-widget-mmt-cat .mmt-cat-card__count { display: inline-block; font-size: 0.8rem; background: var(--mmt-primary, #1CA8CB); color: #fff; padding: 2px 8px; border-radius: 20px; }

/* ── MMT Contact Info ── */
.elementor-widget-mmt-contact-info .mmt-contact-info__title { margin-bottom: 20px; }
.elementor-widget-mmt-contact-info .mmt-contact-info ul { list-style: none; padding: 0; margin: 0; }
.elementor-widget-mmt-contact-info .mmt-contact-info li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.elementor-widget-mmt-contact-info .mmt-contact-info__icon { flex-shrink: 0; width: 20px; margin-top: 2px; }
.elementor-widget-mmt-contact-info .mmt-contact-info__text a { color: inherit; text-decoration: none; }

/* ── MMT FAQ ── */
.elementor-widget-mmt-faq .mmt-faq-item { border: 1px solid #e0e0e0; border-radius: 4px; margin-bottom: 8px; overflow: hidden; }
.elementor-widget-mmt-faq .mmt-faq-question { padding: 14px 16px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.elementor-widget-mmt-faq .mmt-faq-question__icon { font-size: 1.2rem; line-height: 1; }
.elementor-widget-mmt-faq .mmt-faq-answer { padding: 14px 16px; border-top: 1px solid #e0e0e0; }

/* ── MMT Shape Image ── */
.elementor-widget-mmt-shape-image .mmt-shape-image { display: flex; }
.elementor-widget-mmt-shape-image .mmt-shape-image__wrap { overflow: hidden; max-width: 400px; }
.elementor-widget-mmt-shape-image .mmt-shape-image__wrap img { width: 100%; height: auto; display: block; }


/* =============================================================================
   13. MMT Elementor Widgets
   ============================================================================= */

/* Specialties Grid */
.mmt-spec-wrap .mmt-spec-grid { display: grid; grid-template-columns: repeat(var(--mmt-dc, 5), minmax(0, 1fr)); gap: 22px; }
@media (max-width: 1200px) { .mmt-spec-wrap .mmt-spec-grid { grid-template-columns: repeat(var(--mmt-tc, 3), minmax(0, 1fr)); } }
@media (max-width: 768px) {
    .mmt-spec-wrap { position: relative; z-index: 1; }
    .mmt-spec-wrap .mmt-spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; height: auto; min-height: 0; }
}

/* Fix: on mobile the Elementor flex container stretches widget elements to its
   own (constrained) height instead of letting them size to content. Setting
   align-self:flex-start frees the height axis; width:100% restores full width
   that align-self:flex-start would otherwise collapse. */
@media (max-width: 768px) {
    .elementor-widget-mmt_destinations_grid,
    .elementor-widget-mmt_blog_grid,
    .elementor-widget-mmt_specialties_grid,
    .elementor-widget-mmt_clinics_by_destination {
        align-self: flex-start !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }
}

/* Destinations Grid */
.mmt-dest-wrap .mmt-dest-grid { display: grid; grid-template-columns: repeat(var(--mmt-dc, 3), minmax(0, 1fr)); gap: 22px; }
@media (max-width: 1024px) { .mmt-dest-wrap .mmt-dest-grid { grid-template-columns: repeat(var(--mmt-tc, 2), minmax(0, 1fr)); } }
@media (max-width: 768px) {
    .mmt-dest-wrap { position: relative; z-index: 1; }
    .mmt-dest-wrap .mmt-dest-grid { grid-template-columns: 1fr; gap: 16px; height: auto; min-height: 0; }
}

/* Clinics by Destination */
.mmt-home-clinics .mmt-clinic-grid { display: grid; grid-template-columns: repeat(var(--mmt-dc, 5), minmax(0, 1fr)); gap: 22px; align-items: stretch; }
@media (max-width: 1200px) { .mmt-home-clinics .mmt-clinic-grid { grid-template-columns: repeat(var(--mmt-tc, 3), minmax(0, 1fr)); } }
@media (max-width: 768px) {
    .mmt-home-clinics { position: relative; z-index: 1; }
    .mmt-home-clinics .mmt-clinic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; height: auto; min-height: 0; }
    .mmt-home-clinics .mmt-clinic-body { display: none; }
}

/* Blog Grid */
.mmt-blog-wrap .mmt-blog-grid { display: grid; grid-template-columns: repeat(var(--mmt-dc, 5), minmax(0, 1fr)); gap: 22px; align-items: stretch; }
@media (max-width: 1200px) {
    .mmt-blog-wrap .mmt-blog-grid { grid-template-columns: repeat(var(--mmt-tc, 3), minmax(0, 1fr)); }
    /* tablet-up cards (7-9) remain visible on tablet; only desktop-only cards hide */
    .mmt-blog-card[data-vis="desktop"] { display: none; }
}
@media (max-width: 768px) {
    .mmt-blog-wrap { position: relative; z-index: 1; }
    .mmt-blog-wrap .mmt-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; height: auto; min-height: 0; }
    .mmt-blog-card[data-vis="tablet-up"],.mmt-blog-card[data-vis="desktop"] { display: none; }
}

/* Ensure the Elementor container holding the blog grid always expands to
   fit content — overrides any min-height set manually in the editor. */
.e-con:has(.elementor-widget-mmt_blog_grid) { min-height: auto !important; height: auto !important; }
.e-con:has(.elementor-widget-mmt_blog_grid) .e-con-inner { min-height: auto !important; height: auto !important; }

/* CTA Buttons */
.mmt-blog-view-all,
.mmt-view-all {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--mmt-heading, #113D48) !important;
    color: #fff !important;
    border-radius: 48px !important;
    padding: 20px 52px !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    transition: background 0.3s ease-out !important;
    gap: 8px !important;
}
.mmt-blog-view-all:hover,
.mmt-view-all:hover {
    background: var(--mmt-primary, #1CA8CB) !important;
    color: #fff !important;
    text-decoration: none !important;
}


/* =============================================================================
   14. MMT Hello Elementor Widgets
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────
   Specialties Grid  (.mmt-spec-*)
   ───────────────────────────────────────────────────────────── */

.mmt-spec-wrap { max-width: 1600px; margin: 0 auto; padding: 40px 20px; box-sizing: border-box; }
.mmt-spec-card { background: #fff; border: 1px solid #e8eef3; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 22px rgba(15,55,75,.08); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.mmt-spec-card:hover { transform: translateY(-5px); border-color: rgba(41,171,226,.35); box-shadow: 0 14px 38px rgba(15,55,75,.16); }
.mmt-spec-img-wrap { position: relative; display: block; width: 100%; padding-bottom: 100%; overflow: hidden; background: #eef4f8; text-decoration: none; }
.mmt-spec-card .mmt-spec-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.mmt-spec-card:hover .mmt-spec-img-wrap img { transform: scale(1.06); }
.mmt-spec-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#dff3fb,#f4fbff); }
.mmt-spec-name-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 18px; background: linear-gradient(to top,rgba(7,48,68,.82),rgba(7,48,68,.22) 55%,rgba(7,48,68,.02)); }
.mmt-spec-name { color: #fff; font-size: 16px; font-weight: 700; line-height: 1.25; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.mmt-spec-count { display: block; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 400; margin-top: 4px; letter-spacing: .02em; }
.mmt-spec-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #e8eef3; background: #fff; }
.mmt-spec-link { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 8px; color: var(--mmt-accent, #178EAC); font-size: 12px; font-weight: 700; line-height: 1.2; text-decoration: none; text-transform: uppercase; letter-spacing: .03em; transition: background .18s ease, color .18s ease; }
.mmt-spec-link + .mmt-spec-link { border-left: 1px solid #e8eef3; }
.mmt-spec-wrap .mmt-spec-link:hover { background: var(--mmt-primary, #1CA8CB); color: #fff; }

@media (max-width: 768px) {
    .mmt-spec-wrap { padding: 28px 16px; }
    .mmt-spec-name { font-size: 14px; }
    .mmt-spec-link { font-size: 11px; min-height: 42px; }
}


/* ─────────────────────────────────────────────────────────────
   Destinations Grid  (.mmt-dest-*)
   ───────────────────────────────────────────────────────────── */

.mmt-dest-wrap { max-width: 1600px; margin: 0 auto; padding: 40px 20px; box-sizing: border-box; }
.mmt-dest-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.08); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease; }
.mmt-dest-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.14); }
.mmt-dest-img-wrap { position: relative; display: block; width: 100%; padding-bottom: 56.25%; overflow: hidden; background: #c5d2db; flex-shrink: 0; text-decoration: none; }
.mmt-dest-card .mmt-dest-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .32s ease; }
.mmt-dest-card:hover .mmt-dest-img-wrap img { transform: scale(1.06); }
.mmt-dest-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#dff3fb,#f4fbff); }
.mmt-dest-name-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(13,63,87,.72) 0%,rgba(13,63,87,.10) 55%,transparent 100%); display: flex; align-items: flex-end; padding: 16px; }
.mmt-dest-name { color: #fff; font-size: 17px; font-weight: 700; line-height: 1.2; letter-spacing: .01em; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.mmt-dest-links { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid #e8eef3; background: #fff; }
.mmt-dest-link { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 8px; color: var(--mmt-accent, #178EAC); font-size: 12px; font-weight: 700; line-height: 1.2; text-decoration: none; text-transform: uppercase; letter-spacing: .03em; transition: background .18s ease, color .18s ease; }
.mmt-dest-link + .mmt-dest-link { border-left: 1px solid #e8eef3; }
.mmt-dest-wrap .mmt-dest-link:hover { background: var(--mmt-primary, #1CA8CB); color: #fff; }

@media (max-width: 768px) {
    .mmt-dest-wrap { padding: 28px 16px; }
    .mmt-dest-name { font-size: 15px; }
    .mmt-dest-link { font-size: 11px; min-height: 42px; }
}


/* ─────────────────────────────────────────────────────────────
   Clinics by Destination  (.mmt-home-clinics, .mmt-dest-tab, .mmt-clinic-*)
   ───────────────────────────────────────────────────────────── */

.mmt-home-clinics { width: 100%; max-width: 1800px; margin: 55px auto; padding: 0 10px; }
.mmt-destination-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin: 0 auto 38px; max-width: 1500px; border-bottom: 1px solid #dbe5e8; }

/* Double-class scope beats Elementor's button kit output (0,2,0 > 0,1,1) */
.mmt-home-clinics .mmt-dest-tab { appearance: none; border: none; background: transparent; color: #425960; padding: 16px 24px; cursor: pointer; font-weight: 700; font-size: 15px; line-height: 1.2; position: relative; transition: .25s ease; border-radius: 0; box-shadow: none; }
.mmt-home-clinics .mmt-dest-tab:after { content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 3px; background: var(--mmt-heading, #113D48); border-radius: 999px 999px 0 0; transform: scaleX(0); transform-origin: center; transition: .25s ease; }
.mmt-home-clinics .mmt-dest-tab:hover,
.mmt-home-clinics .mmt-dest-tab.active { color: var(--mmt-heading, #113D48); background: rgba(17,61,72,.05); }
.mmt-home-clinics .mmt-dest-tab.active:after { transform: scaleX(1); }

.mmt-tabs-arrow { display: none; }
.mmt-dest-panel { display: none; }
.mmt-dest-panel.active { display: block; }

.mmt-clinic-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8eef3; box-shadow: 0 6px 22px rgba(15,55,75,.08); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.mmt-clinic-card:hover { transform: translateY(-5px); border-color: rgba(41,171,226,.35); box-shadow: 0 14px 38px rgba(15,55,75,.16); }
.mmt-clinic-img-wrap { position: relative; display: block; width: 100%; padding-bottom: 100%; overflow: hidden; background: #eef4f8; flex-shrink: 0; text-decoration: none; }
.mmt-clinic-card .mmt-clinic-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.mmt-clinic-card:hover .mmt-clinic-img-wrap img { transform: scale(1.06); }
.mmt-clinic-no-img { width: 100%; height: 100%; background: linear-gradient(135deg,#dff3fb,#f4fbff); }
.mmt-clinic-dest-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(0,0,0,.50); border: 1px solid rgba(255,255,255,.25); color: #fff; padding: 1px 8px; border-radius: 6px; font-size: 10px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; backdrop-filter: blur(4px); }
.mmt-clinic-name-overlay { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(to top,rgba(7,48,68,.82),rgba(7,48,68,.22) 55%,rgba(7,48,68,.02)); }
.mmt-clinic-name { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.25; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.mmt-clinic-body { padding: 14px 16px; display: flex; flex-direction: column; flex: 1; }
.mmt-specialty-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.mmt-specialty-pills span { background: rgba(17,61,72,.08); color: var(--mmt-heading, #113D48); padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.mmt-specialty-pills .mmt-specialty-more { background: rgba(17,61,72,.05); color: #60777d; }
.mmt-clinic-body p { color: #60777d; font-size: 13px; line-height: 1.55; margin: 0; flex: 1; }
.mmt-clinic-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #e8eef3; background: #fff; }
.mmt-clinic-link { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 8px; color: var(--mmt-accent, #178EAC); font-size: 12px; font-weight: 700; line-height: 1.2; text-decoration: none; text-transform: uppercase; letter-spacing: .03em; transition: background .18s ease, color .18s ease; }
.mmt-clinic-link + .mmt-clinic-link { border-left: 1px solid #e8eef3; }
.mmt-home-clinics .mmt-clinic-link:hover { background: var(--mmt-primary, #1CA8CB); color: #fff; }
.mmt-view-all-wrap { text-align: center; margin-top: 38px; }
.mmt-view-all-wrap .mmt-view-all { display: inline-flex; align-items: center; justify-content: center; background: var(--mmt-primary, #1CA8CB); color: #fff; padding: 15px 32px; border-radius: 999px; font-weight: 800; text-decoration: none; font-size: 15px; box-shadow: 0 10px 25px rgba(41,171,226,.22); transition: .25s ease; }
.mmt-view-all-wrap .mmt-view-all:hover { background: var(--mmt-heading, #113D48); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(13,63,87,.25); }

@media (max-width: 768px) {
    .mmt-home-clinics { padding: 0 10px; margin: 45px auto; }
    .mmt-clinic-name { font-size: 14px; }
    .mmt-clinic-link { font-size: 11px; min-height: 42px; }
    .mmt-tabs-outer { position: relative; }
    .mmt-tabs-outer::before,
    .mmt-tabs-outer::after { content: ''; position: absolute; top: 0; bottom: 1px; width: 60px; pointer-events: none; z-index: 1; opacity: 0; transition: opacity .2s; }
    .mmt-tabs-outer::before { left: 0; background: linear-gradient(to left, transparent, #fff 85%); }
    .mmt-tabs-outer::after { right: 0; background: linear-gradient(to right, transparent, #fff 85%); }
    .mmt-tabs-outer.has-left::before { opacity: 1; }
    .mmt-tabs-outer.has-right::after { opacity: 1; }
    .mmt-tabs-arrow { display: flex; position: absolute; top: 50%; transform: translateY(-65%); z-index: 2; width: 26px; height: 26px; background: #fff; border: 1px solid #cdd8db; border-radius: 50%; align-items: center; justify-content: center; font-size: 11px; color: var(--mmt-heading, #113D48); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.15); padding: 0; line-height: 1; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
    .mmt-tabs-arrow--left { left: 2px; }
    .mmt-tabs-arrow--right { right: 2px; }
    .mmt-tabs-outer.has-left .mmt-tabs-arrow--left,
    .mmt-tabs-outer.has-right .mmt-tabs-arrow--right { opacity: 1; visibility: visible; }
    .mmt-destination-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 0; margin-bottom: 28px; scrollbar-width: none; }
    .mmt-destination-tabs::-webkit-scrollbar { display: none; }
    .mmt-home-clinics .mmt-dest-tab { white-space: nowrap; padding: 14px 18px; }
}


/* ─────────────────────────────────────────────────────────────
   Blog Grid  (.mmt-blog-*)
   ───────────────────────────────────────────────────────────── */

.mmt-blog-wrap { width: 100%; max-width: 1800px; margin: 55px auto; padding: 0 10px; }
.mmt-blog-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8eef3; box-shadow: 0 6px 22px rgba(15,55,75,.08); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.mmt-blog-card:hover { transform: translateY(-5px); border-color: rgba(41,171,226,.35); box-shadow: 0 14px 38px rgba(15,55,75,.16); }
.mmt-blog-img-wrap { position: relative; display: block; width: 100%; padding-bottom: 100%; overflow: hidden; background: #eef4f8; flex-shrink: 0; text-decoration: none; }
.mmt-blog-card .mmt-blog-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.mmt-blog-card:hover .mmt-blog-img-wrap img { transform: scale(1.06); }
.mmt-blog-no-img { width: 100%; height: 100%; background: linear-gradient(135deg,#dff3fb,#f4fbff); }
.mmt-blog-labels { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.mmt-blog-label { padding: 6px 8px 4px; border-radius: 6px; font-size: 9px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(4px); line-height: 1.2; white-space: nowrap; }
.mmt-blog-label--category { background: rgba(0,0,0,.55); }
.mmt-blog-label--destination { background: rgba(13,72,100,.72); }
.mmt-blog-label--specialty { background: rgba(30,100,70,.72); }
.mmt-blog-title-overlay { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(to top,rgba(7,48,68,.82),rgba(7,48,68,.22) 55%,rgba(7,48,68,.02)); }
.mmt-blog-title { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.25; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.mmt-blog-footer { border-top: 1px solid #e8eef3; background: #fff; }
.mmt-blog-read-btn { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 44px; padding: 11px 8px; color: var(--mmt-accent, #178EAC); font-size: 12px; font-weight: 700; line-height: 1.2; text-decoration: none; text-transform: uppercase; letter-spacing: .03em; transition: background .18s ease, color .18s ease; }
.mmt-blog-wrap .mmt-blog-read-btn:hover { background: var(--mmt-primary, #1CA8CB); color: #fff; }
.mmt-blog-view-all-wrap { text-align: center; margin-top: 38px; }
.mmt-blog-view-all-wrap .mmt-blog-view-all { display: inline-flex; align-items: center; justify-content: center; background: var(--mmt-primary, #1CA8CB); color: #fff; padding: 15px 32px; border-radius: 999px; font-weight: 800; text-decoration: none; font-size: 15px; box-shadow: 0 10px 25px rgba(41,171,226,.22); transition: .25s ease; }
.mmt-blog-view-all-wrap .mmt-blog-view-all:hover { background: var(--mmt-heading, #113D48); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(13,63,87,.25); }

@media (max-width: 768px) {
    .mmt-blog-label--category { overflow: hidden; max-width: calc(100% - 24px); -webkit-mask-image: linear-gradient(to right,#000 70%,transparent 100%); mask-image: linear-gradient(to right,#000 70%,transparent 100%); }
    .mmt-blog-title { font-size: 14px; }
    .mmt-blog-read-btn { font-size: 11px; min-height: 42px; }
}


/* =============================================================================
   15. Single Clinic Page Layout
   ============================================================================= */

body.single-clinics #primary,
body.single-clinics #main,
body.single-clinics .site-main,
body.single-clinics .content-area,
body.single-clinics .container,
body.single-clinics .th-container,
body.single-clinics .entry-content {
    max-width: 100% !important;
    width: 100% !important;
}

body.single-clinics .mmt-clinic-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
}

body.single-clinics .mmt-clinic-main {
    min-width: 0;
}

body.single-clinics .mmt-sticky-box {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: #fff;
    padding: 22px;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    body.single-clinics .mmt-clinic-layout {
        display: block;
        padding: 30px 20px;
    }
    body.single-clinics .mmt-sticky-box {
        position: static;
        margin-top: 35px;
        max-height: none;
        overflow: visible;
    }
}
