/**
 * Shared custom styles moved from contact page and contact form.
 * Reusable for future page designs.
 */

/** Source: page-contact.php */
.mpt-contact-page {
            --mpt-ink: #17212b;
            --mpt-muted: #66727d;
            --mpt-line: #dde4e9;
            --mpt-soft: #f6f8f7;
            --mpt-paper: #ffffff;
            --mpt-accent: #004f8c;
            --mpt-accent-dark: #003a66;
            --mpt-secondary: #f9aa2b;
            --mpt-secondary-dark: #f9aa2b;
            --mpt-forest: #1f5b4e;
            --mpt-gold: #f9aa2b;
            background: var(--mpt-paper);
            color: var(--mpt-ink);
            overflow: hidden;
        }

        .mpt-contact-page a {
            color: inherit;
            text-decoration: none;
        }

        .mpt-contact-page a:hover {
            color: var(--mpt-secondary-dark);
        }

        .mpt-contact-hero {
            color: #fff;
            min-height: clamp(520px, 68vh, 720px);
            overflow: hidden;
            position: relative;
        }

        .mpt-contact-hero::before {
            background:
                linear-gradient(90deg, rgba(9, 16, 25, .9) 0%, rgba(9, 16, 25, .62) 48%, rgba(9, 16, 25, .18) 100%),
                linear-gradient(180deg, rgba(9, 16, 25, .16), rgba(9, 16, 25, .35));
            content: "";
            inset: 0;
            position: absolute;
            z-index: 1;
        }

        .mpt-contact-hero img {
            animation: mptHeroDrift 18s ease-out forwards;
            height: 100%;
            inset: 0;
            object-fit: cover;
            object-position: center;
            position: absolute;
            width: 100%;
        }

        .mpt-contact-hero-inner {
            align-items: center;
            display: flex;
            min-height: inherit;
            padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
            position: relative;
            z-index: 2;
        }

        .mpt-kicker {
            color: var(--mpt-secondary);
            display: inline-flex;
            font-size: .78rem;
            font-weight: 950;
            letter-spacing: 0;
            line-height: 1;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .mpt-kicker::before {
            content: none;
        }

        .mpt-contact-title {
            color: #fff;
            font-size: clamp(2.4rem, 6vw, 5.5rem);
            font-weight: 950;
            letter-spacing: 0;
            line-height: .96;
            margin: 0 0 1rem;
            max-width: 850px;
            text-shadow: 0 18px 46px rgba(0, 0, 0, .42);
            text-transform: uppercase;
        }
        .mpt-contact-lead {
            color: rgba(255, 255, 255, .9);
            font-size: clamp(1rem, 1.55vw, 1.2rem);
            line-height: 1.75;
            margin: 0;
            max-width: 680px;
        }

        .mpt-btn.mpt-btn-outline {
            color: white;
        }
        .mpt-btn.mpt-btn-outline:hover {
            color: white;
        }

        .mpt-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: .8rem;
            margin-top: 1.7rem;
        }

        .mpt-btn {
            align-items: center;
            border-radius: 8px;
            display: inline-flex;
            font-weight: 700;
            gap: .55rem;
            justify-content: center;
            min-height: 48px;
            padding: .82rem 1.15rem;
            transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
        }

        .mpt-btn-primary {
            background: #fff;
            border: 1px solid #fff;
            color: var(--mpt-ink);
        }

        .mpt-btn-primary:hover {
            background: #f4efe7;
            border-color: #f4efe7;
            color: var(--mpt-ink);
            transform: translateY(-2px);
        }

        .mpt-btn-outline {
            border: 1px solid rgba(255, 255, 255, .55);
            color: #fff;
        }

        .mpt-btn-outline:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .mpt-section {
            padding: clamp(54px, 7vw, 96px) 0;
        }

        .mpt-section-soft {
            background: var(--mpt-soft);
            border-bottom: 1px solid var(--mpt-line);
            border-top: 1px solid var(--mpt-line);
        }

        .mpt-section-kicker {
            color: var(--mpt-secondary-dark);
            font-size: .76rem;
            font-weight: 800;
            letter-spacing: .08em;
            margin-bottom: .75rem;
            text-transform: uppercase;
        }

        .mpt-section-title {
            color: var(--mpt-ink);
            font-size: clamp(1.85rem, 3.5vw, 3.35rem);
            font-weight: 600;
            letter-spacing: 0;
            line-height: 1.05;
            margin: 0 0 1rem;
        }

        .mpt-section-copy {
            color: var(--mpt-muted);
            font-size: 1rem;
            line-height: 1.78;
            margin: 0;
            max-width: 660px;
        }

        .mpt-trust-grid {
            display: grid;
            gap: 0;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 2.2rem;
        }

        .mpt-trust-card {
            background: var(--mpt-paper);
            border: 1px solid var(--mpt-line);
            border-radius: 8px;
            min-height: 180px;
            padding: 1.35rem;
        }

        .mpt-trust-card i {
            color: var(--mpt-accent);
            font-size: 1.35rem;
            margin-bottom: 1rem;
        }

        .mpt-card-label {
            color: var(--mpt-muted);
            font-size: .74rem;
            font-weight: 800;
            letter-spacing: .08em;
            margin-bottom: .45rem;
            text-transform: uppercase;
        }

        .mpt-card-value {
            color: var(--mpt-ink);
            font-size: 1rem;
            line-height: 1.58;
            overflow-wrap: anywhere;
        }

        .mpt-contact-details {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            margin-top: clamp(2rem, 5vw, 3.2rem);
        }

        .mpt-detail-card {
            background: var(--mpt-paper);
            border: 1px solid var(--mpt-line);
            border-radius: 8px;
            padding: 1.3rem;
        }

        .mpt-detail-icon {
            align-items: center;
            background: var(--mpt-soft);
            border: 1px solid var(--mpt-line);
            border-radius: 8px;
            color: var(--mpt-accent);
            display: inline-flex;
            height: 44px;
            justify-content: center;
            margin-bottom: 1rem;
            width: 44px;
        }

        .mpt-agency-strip {
            border-top: 1px solid var(--mpt-line);
            display: grid;
            gap: 0;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: clamp(2.2rem, 5vw, 4rem);
        }

        .mpt-strip-item {
            border-bottom: 1px solid var(--mpt-line);
            padding: 1.2rem 1.2rem 1.2rem 0;
        }

        .mpt-strip-item strong {
            color: var(--mpt-ink);
            display: block;
            font-size: 1rem;
            margin-bottom: .25rem;
        }

        .mpt-strip-item span {
            color: var(--mpt-muted);
            display: block;
            font-size: .94rem;
            line-height: 1.6;
        }

        .mpt-form-shell {
            background: var(--mpt-paper);
            border: 1px solid var(--mpt-line);
            border-radius: 8px;
            padding: clamp(1.25rem, 3vw, 2rem);
        }

        .mpt-form-shell label {
            color: var(--mpt-ink);
            font-size: .84rem;
            font-weight: 800;
            margin-bottom: .4rem;
        }

        .mpt-form-shell .form-control,
        .mpt-form-shell .form-select {
            border: 1px solid var(--mpt-line);
            border-radius: 8px;
            box-shadow: none;
            min-height: 48px;
        }

        .mpt-form-shell textarea.form-control {
            min-height: 142px;
            resize: vertical;
        }

        .mpt-form-shell .form-control:focus,
        .mpt-form-shell .form-select:focus {
            border-color: var(--mpt-secondary);
            box-shadow: 0 0 0 .18rem rgba(112, 180, 83, .16);
        }

        .mpt-form-note {
            color: var(--mpt-muted);
            font-size: .92rem;
            line-height: 1.65;
            margin-top: 1rem;
        }

        .mpt-submit {
            background: var(--mpt-ink);
            border: 1px solid var(--mpt-ink);
            border-radius: 8px;
            color: #fff;
            font-weight: 800;
            min-height: 50px;
            padding: .85rem 1.25rem;
        }

        .mpt-submit:hover {
            background: var(--mpt-secondary-dark);
            border-color: var(--mpt-secondary-dark);
            color: #fff;
        }

        .mpt-socials {
            display: flex;
            flex-wrap: wrap;
            gap: .65rem;
            margin-top: .9rem;
        }

        .mpt-social-link {
            align-items: center;
            background: #fff;
            border: 1px solid var(--mpt-line);
            border-radius: 8px;
            color: var(--mpt-ink);
            display: inline-flex;
            height: 44px;
            justify-content: center;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
            width: 44px;
        }

        .mpt-social-link:hover {
            border-color: var(--mpt-secondary);
            color: var(--mpt-secondary-dark);
            transform: translateY(-2px);
        }

        .mpt-experience-band {
            background: #f6f6f6;
            padding: clamp(3rem, 7vw, 5.6rem) 0;
        }

        .mpt-experience-title {
            color: #343942;
            font-size: clamp(2rem, 4vw, 3.4rem);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.05;
            margin: 0 0 clamp(2rem, 5vw, 3.5rem);
            text-align: center;
        }

        .mpt-benefit-row {
            display: grid;
            gap: clamp(1rem, 2vw, 1.6rem);
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .mpt-benefit-item {
            align-items: center;
            background: #fff;
            border: 1px solid rgba(23, 33, 43, .04);
            border-radius: 8px;
            box-shadow: 0 18px 38px rgba(23, 33, 43, .08);
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 230px;
            padding: 2rem 1.4rem;
            text-align: center;
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        }

        .mpt-benefit-item:hover {
            border-color: rgba(112, 180, 83, .38);
            box-shadow: 0 24px 52px rgba(23, 33, 43, .12);
            transform: translateY(-6px);
        }

        .mpt-benefit-item i {
            color: var(--mpt-secondary);
            font-size: 3.15rem;
            margin-bottom: 1.4rem;
            text-align: center;
        }

        .mpt-benefit-item strong {
            color: #343942;
            display: block;
            font-size: clamp(1.05rem, 1.4vw, 1.25rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .mpt-benefit-item span {
            color: #4f5661;
            display: block;
            font-size: .98rem;
            line-height: 1.5;
            max-width: 270px;
        }

        .mpt-slider-head {
            align-items: flex-end;
            display: flex;
            gap: 1rem;
            justify-content: space-between;
            margin-bottom: 1.75rem;
        }

        .mpt-slider-copy {
            max-width: 1100px;
        }

        .mpt-slider-nav {
            display: flex;
            gap: .75rem;
            flex: 0 0 auto;
        }

        .mpt-slider-btn {
            align-items: center;
            background: transparent;
            border: 1px solid var(--mpt-muted);
            border-radius: 50%;
            color: var(--mpt-ink);
            display: inline-flex;
            height: 52px;
            justify-content: center;
            transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
            width: 52px;
        }

        .mpt-slider-btn:hover {
            background: var(--mpt-secondary);
            border-color: var(--mpt-secondary);
            color: #fff;
            transform: translateY(-2px);
        }

        .mpt-media-card {
            border-radius: 8px;
            color: #fff;
            display: block;
            isolation: isolate;
            min-height: 270px;
            overflow: hidden;
            position: relative;
        }

        .mpt-media-card img {
            height: 100%;
            inset: 0;
            object-fit: cover;
            position: absolute;
            transition: transform .65s ease, filter .65s ease;
            width: 100%;
            z-index: -2;
        }

        .mpt-media-card::before {
            background: linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .82));
            content: "";
            inset: 0;
            position: absolute;
            transition: opacity .35s ease;
            z-index: -1;
        }

        .mpt-media-card:hover img {
            filter: saturate(1.08);
            transform: scale(1.08);
        }

        .mpt-media-card:hover::before {
            opacity: 1;
        }

        .mpt-tour-type-card {
            aspect-ratio: 1 / 1;
            min-height: 0;
        }

        .mpt-tour-type-body {
            align-items: flex-end;
            display: flex;
            height: 100%;
            justify-content: space-between;
            padding: 1.3rem;
        }

        .mpt-tour-type-title {
            font-size: clamp(1.35rem, 2.2vw, 1.85rem);
            font-weight: 900;
            line-height: 1.05;
            color: white;
            text-shadow: 0 3px 14px rgba(0, 0, 0, .72);
        }

        .mpt-tour-type-count {
            font-size: 1.1rem;
            font-weight: 700;
            white-space: nowrap;
            color: white;
            text-shadow: 0 3px 14px rgba(0, 0, 0, .72);
            transition: all 300ms;
        }

        .mpt-style-grid,
        .mpt-feature-grid {
            display: grid;
            gap: clamp(1rem, 3vw, 1.8rem);
            grid-template-columns: repeat(2, minmax(0, 1fr));
            margin-top: 2rem;
        }

        .mpt-style-card {
            min-height: clamp(260px, 28vw, 390px);
        }

        .mpt-style-body {
            align-items: center;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: center;
            padding: 2rem;
            text-align: center;
        }

        .mpt-style-title {
            border-bottom: 3px solid currentColor;
            font-size: clamp(2rem, 4vw, 3.3rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.1rem;
            transition: border-color .25s ease, color .25s ease;
            color: white;
            text-decoration: none;
            text-shadow: 0 3px 16px rgba(0, 0, 0, .74);
        }

        .mpt-style-card:hover .mpt-style-title {
            color: #004f8c;
        }

        .mpt-style-count {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 3px 14px rgba(0, 0, 0, .74);
        }

        .mpt-feature-section .mpt-section-title {
            color: var(--mpt-forest);
        }

        .mpt-feature-card {
            border-radius: 20px;
            min-height: clamp(310px, 36vw, 520px);
        }

        .mpt-feature-body {
            align-items: flex-end;
            display: flex;
            height: 100%;
            padding: clamp(1.5rem, 4vw, 3rem);
        }

        .mpt-feature-title {
            font-size: clamp(2rem, 4vw, 3.45rem);
            font-weight: 900;
            line-height: 1.03;
            color: #fff;
            text-shadow: 0 3px 16px rgba(0, 0, 0, .74);
        }

        .mpt-green-cta {
            align-items: center;
            background: var(--mpt-secondary-dark);
            border-radius: 20px;
            color: #fff;
            display: grid;
            gap: 1.25rem;
            grid-template-columns: 1fr auto;
            margin-top: 2rem;
            padding: clamp(1.4rem, 4vw, 2.6rem);
        }

        .mpt-green-cta strong {
            display: block;
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1;
            margin-bottom: .8rem;
        }

        .mpt-green-cta span {
            color: rgba(255, 255, 255, .88);
            display: block;
            font-size: 1.05rem;
            line-height: 1.55;
        }

        .mpt-green-cta a {
            background: #fff;
            border-radius: 999px;
            color: var(--mpt-forest);
            font-weight: 900;
            padding: 1rem 1.6rem;
            transition: transform .2s ease, box-shadow .2s ease;
            white-space: nowrap;
        }

        .mpt-green-cta a:hover {
            color: var(--mpt-forest);
            box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
            transform: translateY(-2px);
        }

        .mpt-explore-section {
            background: #f5f0e8;
        }

        .mpt-explore-head {
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .mpt-explore-head .mpt-section-kicker {
            color: var(--mpt-ink);
        }

        .mpt-explore-head .mpt-section-title {
            font-size: clamp(2rem, 4vw, 3.35rem);
            font-weight: 500;
        }

        .mpt-explore-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }

        .mpt-explore-card {
            border-radius: 0;
            min-height: 420px;
        }

        .mpt-explore-card:nth-child(-n+3) {
            grid-column: span 2;
        }

        .mpt-explore-card:nth-child(n+4) {
            grid-column: span 3;
            min-height: 360px;
        }

        .mpt-explore-body {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: space-between;
            padding: clamp(1.3rem, 3vw, 2rem);
            text-align: center;
        }

        .mpt-explore-title {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.1;
            color: white;
            text-shadow: 0 3px 16px rgba(0, 0, 0, .74);
        }

        .mpt-explore-copy {
            color: #fff;
            font-size: clamp(1.05rem, 1.5vw, 1.35rem);
            line-height: 1.35;
            margin: 0 auto;
            max-width: 520px;
            text-shadow: 0 3px 16px rgba(0, 0, 0, .74);
        }

        .mpt-explore-card::after {
            align-items: center;
            background: rgba(112, 180, 83, .92);
            border-radius: 999px;
            bottom: 1.25rem;
            color: #fff;
            content: "Explore";
            display: inline-flex;
            font-size: .8rem;
            font-weight: 900;
            height: 38px;
            justify-content: center;
            left: 50%;
            letter-spacing: .06em;
            opacity: 0;
            padding: 0 1.1rem;
            position: absolute;
            text-transform: uppercase;
            transform: translate(-50%, 10px);
            transition: opacity .25s ease, transform .25s ease;
        }

        .mpt-explore-card:hover::after {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        .mpt-animate,
        .mpt-section,
        .mpt-experience-band {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .85s ease, transform .85s ease;
            will-change: opacity, transform;
        }

        .mpt-delay-1 {
            transition-delay: .12s;
        }

        .mpt-delay-2 {
            transition-delay: .24s;
        }

        .mpt-delay-3 {
            transition-delay: .36s;
        }

        .mpt-animate.mpt-in-view,
        .mpt-section.mpt-in-view,
        .mpt-experience-band.mpt-in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .mpt-form-shell,
        .mpt-detail-card,
        .mpt-trust-card {
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        }

        .mpt-form-shell:hover,
        .mpt-detail-card:hover,
        .mpt-trust-card:hover {
            border-color: rgba(112, 180, 83, .4);
            box-shadow: 0 18px 44px rgba(23, 33, 43, .08);
            transform: translateY(-3px);
        }

        @keyframes mptHeroDrift {
            from {
                transform: scale(1.04);
            }

            to {
                transform: scale(1.12);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .mpt-contact-hero img,
            .mpt-animate {
                animation: none;
            }

            .mpt-animate,
            .mpt-section,
            .mpt-experience-band {
                opacity: 1;
                transform: none;
            }

            .mpt-form-shell,
            .mpt-detail-card,
            .mpt-trust-card,
            .mpt-btn,
            .mpt-social-link {
                transition: none;
            }
        }

        @media (max-width: 1199.98px) {
            .mpt-trust-grid,
            .mpt-contact-details,
            .mpt-benefit-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .mpt-explore-card,
            .mpt-explore-card:nth-child(-n+3),
            .mpt-explore-card:nth-child(n+4) {
                grid-column: span 3;
            }
        }

        @media (max-width: 991.98px) {
            .mpt-contact-hero {
                min-height: clamp(500px, 66vh, 620px);
            }

            .mpt-contact-hero::before {
                background:
                    linear-gradient(90deg, rgba(9, 16, 25, .88), rgba(9, 16, 25, .56)),
                    linear-gradient(180deg, rgba(9, 16, 25, .16), rgba(9, 16, 25, .44));
            }

            .mpt-contact-hero-inner {
                padding-bottom: 4rem;
                padding-top: 7rem;
            }

            .mpt-agency-strip {
                grid-template-columns: 1fr;
            }

            .mpt-slider-head,
            .mpt-green-cta {
                align-items: flex-start;
                grid-template-columns: 1fr;
            }

            .mpt-slider-head {
                flex-direction: column;
            }

            .mpt-style-grid,
            .mpt-feature-grid {
                grid-template-columns: 1fr;
            }

            .mpt-benefit-row {
                grid-template-columns: 1fr;
            }

            .mpt-explore-grid {
                grid-template-columns: 1fr;
            }

            .mpt-explore-card,
            .mpt-explore-card:nth-child(-n+3),
            .mpt-explore-card:nth-child(n+4) {
                grid-column: auto;
                min-height: 340px;
            }
        }

        @media (max-width: 575.98px) {
            .mpt-contact-hero-inner {
                padding-top: 4.8rem;
            }

            .mpt-trust-grid,
            .mpt-contact-details {
                grid-template-columns: 1fr;
            }

            .mpt-btn {
                width: 100%;
            }

            .mpt-experience-title {
                gap: .75rem;
            }

            .mpt-experience-title::before,
            .mpt-experience-title::after {
                width: 46px;
            }

            .mpt-tour-type-body {
                padding: 1rem;
            }
        }

/** Source: forms/contact-form.php */
.mptcf-wrap {
            background: #fff;
            border: 1px solid #dde4e9;
            border-radius: 8px;
            padding: clamp(1.25rem, 3vw, 2rem);
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        }



        .mptcf-form {
            display: grid;
            gap: 1rem;
            margin: 0;
        }

        .mptcf-grid {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .mptcf-field label,
        .mptcf-captcha-label {
            color: #17212b;
            display: block;
            font-size: .84rem;
            font-weight: 800;
            margin-bottom: .4rem;
        }

        .mptcf-field input,
        .mptcf-field textarea,
        .mptcf-captcha input {
            background: #fff;
            border: 1px solid #dde4e9;
            border-radius: 8px;
            box-shadow: none;
            color: #17212b;
            min-height: 48px;
            padding: .72rem .9rem;
            transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
            width: 100%;
        }

        .mptcf-field textarea {
            min-height: 150px;
            resize: vertical;
        }

        .mptcf-field input:focus,
        .mptcf-field textarea:focus,
        .mptcf-captcha input:focus {
            border-color: #004f8c;
            box-shadow: 0 0 0 .18rem rgba(112, 180, 83, .16);
            outline: 0;
        }

        .mptcf-captcha {
            align-items: center;
            background: #f6f8f7;
            border: 1px solid #dde4e9;
            border-radius: 8px;
            display: grid;
            gap: 1rem;
            grid-template-columns: 1fr 120px;
            padding: .95rem;
        }

        .mptcf-captcha strong {
            color: #003a66;
            display: block;
            font-size: 1.25rem;
            line-height: 1;
        }

        .mptcf-alert {
            border-radius: 8px;
            display: none;
            font-size: .94rem;
            line-height: 1.5;
            padding: .85rem 1rem;
        }

        .mptcf-alert.is-visible {
            animation: mptcfFadeUp .35s ease both;
            display: block;
        }

        .mptcf-alert.is-error {
            background: #fff2f0;
            border: 1px solid #ffd1ca;
            color: #9f2f21;
        }

        .mptcf-submit {
            align-items: center;
            background: #17212b;
            border: 1px solid #17212b;
            border-radius: 8px;
            color: #fff;
            display: inline-flex;
            font-weight: 800;
            gap: .6rem;
            justify-content: center;
            min-height: 50px;
            padding: .85rem 1.25rem;
            transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
            width: fit-content;
        }

        .mptcf-submit:hover,
        .mptcf-submit:focus {
            background: #003a66;
            border-color: #003a66;
            color: #fff;
            transform: translateY(-2px);
        }

        .mptcf-submit:disabled {
            cursor: wait;
            opacity: .72;
            transform: none;
        }

        .mptcf-success {
            animation: mptcfSuccessIn .55s ease both;
            background: linear-gradient(135deg, #f6fbf3, #fff);
            border: 1px solid rgba(112, 180, 83, .35);
            border-radius: 8px;
            padding: clamp(1.5rem, 4vw, 2.4rem);
            text-align: center;
        }

        .mptcf-success-icon {
            align-items: center;
            background: #004f8c;
            border-radius: 50%;
            color: #fff;
            display: inline-flex;
            font-size: 1.35rem;
            height: 54px;
            justify-content: center;
            margin-bottom: 1rem;
            width: 54px;
        }

        .mptcf-success strong {
            color: #17212b;
            display: block;
            font-size: clamp(1.35rem, 2.5vw, 2rem);
            line-height: 1.15;
            margin-bottom: .7rem;
        }

        .mptcf-success p {
            color: #66727d;
            line-height: 1.7;
            margin: 0 auto;
            max-width: 560px;
        }

        .mptcf-hp {
            height: 0;
            left: -9999px;
            overflow: hidden;
            position: absolute;
            width: 0;
        }

        @keyframes mptcfFadeUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes mptcfSuccessIn {
            from {
                opacity: 0;
                transform: translateY(14px) scale(.98);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @media (max-width: 575.98px) {
            .mptcf-grid,
            .mptcf-captcha {
                grid-template-columns: 1fr;
            }

            .mptcf-submit {
                width: 100%;
            }
        }

/**
 * Source: page-about-us.php
 */
.mpt-about-page {
    --mpt-about-ink: #17212b;
    --mpt-about-muted: #66727d;
    --mpt-about-line: #dde4e9;
    --mpt-about-soft: #f6f8f7;
    --mpt-about-paper: #ffffff;
    --mpt-about-green: #004f8c;
    --mpt-about-green-dark: #003a66;
    background: var(--mpt-about-paper);
    color: var(--mpt-about-ink);
    overflow: hidden;
}

.mpt-about-page a {
    color: inherit;
    text-decoration: none;
}

.mpt-about-page h1,
.mpt-hero h1,
.mpt-hero .h1,
.mpt-about-page .h1 {
    font-size: clamp(2.55rem, 6vw, 5.8rem);
}

.mpt-about-page h2,
.mpt-hero h2,
.mpt-hero .h2,
.mpt-about-page .h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.mpt-about-page h3, .mpt-hero h3, .mpt-hero .h3, .mpt-about-page .h3 {
    font-size: 1.4rem;
    color: white;
    font-weight: 800;
}

.mpt-about-page h4,
.mpt-hero h4,
.mpt-hero .h4,
.mpt-about-page .h4 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.mpt-about-page h5,
.mpt-hero h5,
.mpt-hero .h5,
.mpt-about-page .h5 {
    font-size: 1.22rem;
}

.mpt-about-page h6,
.mpt-hero h6,
.mpt-hero .h6,
.mpt-about-page .h6 {
    font-size: .94rem;
}

.mpt-hero {
    min-height: clamp(520px, 68vh, 720px);
    overflow: hidden;
    position: relative;
}

.mpt-hero::before {
    background: linear-gradient(90deg, rgba(9, 15, 20, .78) 0%, rgba(9, 15, 20, .42) 52%, rgba(9, 15, 20, .2) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-hero-media {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.04);
    width: 100%;
}

.mpt-hero-video {
    z-index: 0;
}

.mpt-hero-inner {
    align-items: flex-end;
    display: flex;
    inset: 0;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
}

.mpt-hero--center .mpt-hero-inner {
    align-items: center;
    text-align: center;
    color: white;
}

.mpt-hero-kicker {
    align-items: center;
    color: #004f8c;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 700;
    gap: .65rem;
    justify-content: center;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.mpt-hero-kicker::before,
.mpt-hero-kicker::after {
    background: currentColor;
    content: "";
    display: inline-block;
    height: 1px;
    width: 46px;
}

.mpt-hero-title {
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .98;
    margin: .75rem auto 1.2rem;
    max-width: 920px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.mpt-hero-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.7vw, 1.28rem);
    line-height: 1.75;
    margin: 0 auto;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .36);
}

.mpt-about-hero {
    min-height: clamp(520px, 68vh, 720px);
    overflow: hidden;
    position: relative;
}

.mpt-about-hero::before {
    background: linear-gradient(90deg, rgba(9, 15, 20, .78) 0%, rgba(9, 15, 20, .42) 52%, rgba(9, 15, 20, .2) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-about-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.04);
    width: 100%;
}

.mpt-about-hero-inner {
    align-items: flex-end;
    display: flex;
    inset: 0;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
}

.mpt-about-title {
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .98;
    margin: .75rem 0 1.2rem;
    max-width: 920px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.mpt-about-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.7vw, 1.28rem);
    line-height: 1.75;
    margin: 0;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .36);
}

.mpt-about-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.mpt-front-intro-section {
    background: #fff;
    padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.mpt-front-intro-copy {
    max-width: 760px;
}

.mpt-front-intro-copy h2 {
    color: #050505;
    font-size: clamp(2.45rem, 4.8vw, 4.65rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .95;
    margin: 0 0 clamp(1.7rem, 3vw, 2.35rem);
    text-transform: uppercase;
}

.mpt-front-intro-text {
    color: #7d7d82;
    font-size: clamp(1.02rem, 1.35vw, 1.28rem);
    line-height: 1.62;
    max-width: 690px;
}

.mpt-front-intro-text p {
    margin: 0 0 1.45rem;
}

.mpt-front-intro-list {
    display: grid;
    gap: .95rem;
    list-style: none;
    margin: clamp(1.8rem, 3vw, 2.45rem) 0 0;
    padding: 0;
}

.mpt-front-intro-list li {
    align-items: center;
    color: #777a80;
    display: flex;
    font-size: clamp(1rem, 1.18vw, 1.16rem);
    gap: 1rem;
    line-height: 1.35;
}

.mpt-front-intro-list i {
    align-items: center;
    background: #125b8a;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 22px;
    font-size: .95rem;
    height: 22px;
    justify-content: center;
    width: 22px;
}

.mpt-front-intro-button {
    align-items: center;
    background: #125b8a;
    border: 1px solid #125b8a;
    border-radius: 999px;
    box-shadow: 0 16px 28px rgba(18, 91, 138, .18);
    color: #fff;
    display: inline-flex;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    font-weight: 800;
    justify-content: center;
    margin-top: clamp(2rem, 3vw, 2.6rem);
    min-height: 58px;
    padding: .95rem 2.5rem;
    text-decoration: none;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease, transform .3s ease;
}

.mpt-front-intro-button:hover,
.mpt-front-intro-button:focus {
    background: #faab2c;
    border-color: #faab2c;
    box-shadow: 0 18px 32px rgba(250, 171, 44, .24);
    color: #10283a;
    transform: translateY(-2px);
}

.mpt-front-intro-media {
    aspect-ratio: 1.05 / .94;
    border-radius: 10px;
    box-shadow: 0 22px 48px rgba(18, 31, 43, .12);
    margin: 0;
    overflow: hidden;
    position: relative;
}

.mpt-front-intro-media::after {
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: inherit;
    content: "";
    inset: 10px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity .3s ease, inset .3s ease;
}

.mpt-front-intro-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .7s ease;
    width: 100%;
}

.mpt-front-intro-section:hover .mpt-front-intro-media img {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.035);
}

.mpt-front-intro-section:hover .mpt-front-intro-media::after {
    inset: 14px;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .mpt-front-intro-copy h2 {
        font-size: clamp(2.15rem, 10vw, 3.35rem);
    }

    .mpt-front-intro-media {
        aspect-ratio: 1.2 / .9;
    }
}

@media (max-width: 575.98px) {
    .mpt-front-intro-button {
        width: 100%;
    }
}

.mpt-experience-section {
    background: #f6f3ed;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.mpt-about-page .mpt-front-tours-grid {
    margin-top: 1.75rem;
}

.mpt-about-page .mpt-front-tour-card {
    background: #fff;
    border: 1px solid #e9e5df;
    border-radius: 2px;
    box-shadow: 0 14px 32px rgba(23, 33, 43, .08);
    color: #303238;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.mpt-about-page .mpt-front-tour-card:hover,
.mpt-about-page .mpt-front-tour-card:focus-within {
    border-color: rgba(233, 91, 12, .36);
    box-shadow: 0 20px 44px rgba(23, 33, 43, .12), 0 0 0 3px rgba(233, 91, 12, .045);
    transform: translateY(-4px);
}

.mpt-about-page .mpt-front-tour-card__media {
    aspect-ratio: 16 / 10.8;
    background: #dbe1df;
    display: block;
    overflow: hidden;
    position: relative;
}

.mpt-about-page .mpt-front-tour-card__media::before {
    background: linear-gradient(180deg, rgba(17, 24, 39, .04) 0%, rgba(17, 24, 39, .22) 42%, rgba(17, 24, 39, .86) 100%);
    content: "";
    inset: 0;
    opacity: .9;
    position: absolute;
    transition: opacity .35s ease, background .35s ease;
    z-index: 1;
}

.mpt-about-page .mpt-front-tour-card__image {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: filter .45s ease, transform .65s ease;
    width: 100%;
}

.mpt-about-page .mpt-front-tour-card__media-content {
    bottom: 0;
    color: #fff;
    display: grid;
    gap: .42rem;
    left: 0;
    padding: 1.1rem;
    position: absolute;
    right: 0;
    transform: translateY(.35rem);
    transition: transform .35s ease;
    z-index: 2;
}

.mpt-about-page .mpt-front-tour-card__media-kicker {
    align-items: center;
    color: rgba(255, 255, 255, .88);
    display: inline-flex;
    font-size: .68rem;
    font-weight: 800;
    gap: .35rem;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.mpt-about-page .mpt-front-tour-card__media-title {
    color: #fff;
    display: block;
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .36);
}

.mpt-about-page .mpt-front-tour-card__media-more {
    align-items: center;
    color: rgba(255, 255, 255, .92);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    gap: .4rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(.35rem);
    transition: opacity .3s ease, transform .3s ease;
}

.mpt-about-page .mpt-front-tour-card:hover .mpt-front-tour-card__image,
.mpt-about-page .mpt-front-tour-card:focus-within .mpt-front-tour-card__image {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.055);
}

.mpt-about-page .mpt-front-tour-card:hover .mpt-front-tour-card__media::before,
.mpt-about-page .mpt-front-tour-card:focus-within .mpt-front-tour-card__media::before {
    opacity: 1;
}

.mpt-about-page .mpt-front-tour-card:hover .mpt-front-tour-card__media-content,
.mpt-about-page .mpt-front-tour-card:focus-within .mpt-front-tour-card__media-content {
    transform: translateY(0);
}

.mpt-about-page .mpt-front-tour-card:hover .mpt-front-tour-card__media-more,
.mpt-about-page .mpt-front-tour-card:focus-within .mpt-front-tour-card__media-more {
    opacity: 1;
    transform: translateY(0);
}

.mpt-about-page .mpt-front-tour-card__body {
    background-color: #fff;
    display: flex;
    flex: 1;
    flex-direction: column;
    isolation: isolate;
    padding: 1.15rem;
    position: relative;
}

.mpt-about-page .mpt-front-tour-card__body::before {
    background-image:
        radial-gradient(ellipse at 18% 14%, rgba(148, 163, 184, .08) 0 2px, transparent 3px),
        repeating-radial-gradient(ellipse at 24% 28%, rgba(148, 163, 184, .12) 0 1px, transparent 1px 18px);
    background-position: 0 0;
    background-size: 360px 260px;
    content: "";
    inset: 0;
    opacity: .58;
    pointer-events: none;
    position: absolute;
    transform: translate3d(0, 0, 0);
    transition: opacity .45s ease, transform .7s ease;
    z-index: -1;
}

.mpt-about-page .mpt-front-tour-card:hover .mpt-front-tour-card__body::before,
.mpt-about-page .mpt-front-tour-card:focus-within .mpt-front-tour-card__body::before {
    opacity: .78;
    transform: translate3d(-12px, -10px, 0);
}

.mpt-about-page .mpt-front-tour-card__topline {
    align-items: center;
    border-bottom: 1px solid rgba(23, 33, 43, .1);
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: .85rem;
}

.mpt-about-page .mpt-front-tour-card__topline span,
.mpt-about-page .mpt-front-tour-card__facts span {
    align-items: center;
    color: #55575d;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 600;
    gap: .45rem;
    line-height: 1.25;
}

.mpt-about-page .mpt-front-tour-card__topline i,
.mpt-about-page .mpt-front-tour-card__facts i {
    color: #55575d;
    font-size: .9rem;
    width: 1rem;
}

.mpt-about-page .mpt-front-tour-card__topline i.fa-clock {
    color: #e95b0c;
}

.mpt-about-page .mpt-front-tour-card__title {
    color: #303238;
    font-size: 1.04rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 .6rem;
    min-height: 2.5rem;
}

.mpt-about-page .mpt-front-tour-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.mpt-about-page .mpt-front-tour-card__title a:hover,
.mpt-about-page .mpt-front-tour-card__title a:focus {
    color: #e95b0c;
}

.mpt-about-page .mpt-front-tour-card__location {
    color: #85868a;
    font-size: .84rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 .85rem;
    min-height: 2.45rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mpt-about-page .mpt-front-tour-card__excerpt {
    color: #56585e;
    font-size: .86rem;
    font-weight: 500;
    line-height: 1.52;
    margin: 0 0 1.1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mpt-about-page .mpt-front-tour-card__footer {
    align-items: stretch;
    display: grid;
    gap: .9rem;
    grid-template-columns: 1fr;
    margin-top: auto;
}

.mpt-about-page .mpt-front-tour-card__facts {
    display: grid;
    gap: 0 .8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpt-about-page .mpt-front-tour-card__facts span {
    min-height: 30px;
    overflow: hidden;
    padding: .38rem 0;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mpt-about-page .mpt-front-tour-card__facts span::after {
    background: linear-gradient(90deg, rgba(23, 33, 43, .08), rgba(23, 33, 43, 0));
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
}

.mpt-about-page .mpt-front-tour-card__facts span:nth-child(odd)::before {
    background: rgba(23, 33, 43, .06);
    bottom: .42rem;
    content: "";
    position: absolute;
    right: -.4rem;
    top: .42rem;
    width: 1px;
}

.mpt-about-page .mpt-front-tour-card__facts i.fa-star {
    color: #f7b500;
}

.mpt-about-page .mpt-front-tour-card__action {
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(23, 33, 43, .1);
    display: flex;
    gap: .9rem;
    justify-content: space-between;
    padding-top: .95rem;
}

.mpt-about-page .mpt-front-tour-card__action p {
    color: #55575d;
    flex: 1 1 auto;
    font-size: .78rem;
    line-height: 1.25;
    margin: 0;
    min-width: 0;
    text-align: left;
}

.mpt-about-page .mpt-front-tour-card__action p span {
    display: inline;
}

.mpt-about-page .mpt-front-tour-card__action strong {
    color: #303238;
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
}

.mpt-about-page .mpt-front-tour-card__action a {
    background: #e95b0c;
    color: #fff;
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .82rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    min-height: 40px;
    padding: .72rem .9rem;
    position: relative;
    text-decoration: none;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
    white-space: nowrap;
}

.mpt-about-page .mpt-front-tour-card__action a i {
    font-size: .78rem;
    transition: transform .25s ease;
}

.mpt-about-page .mpt-front-tour-card__action a:hover,
.mpt-about-page .mpt-front-tour-card__action a:focus {
    background: #c94b07;
    box-shadow: 0 12px 24px rgba(233, 91, 12, .2);
    color: #fff;
    transform: translateY(-2px);
}

.mpt-about-page .mpt-front-tour-card__action a:hover i,
.mpt-about-page .mpt-front-tour-card__action a:focus i {
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .mpt-about-page .mpt-front-tour-card__facts {
        grid-template-columns: 1fr;
    }

    .mpt-about-page .mpt-front-tour-card__action {
        align-items: stretch;
        flex-direction: column;
    }
}

.mpt-why-choose-hero {
    background-position: center;
    background-size: cover;
    color: #fff;
    isolation: isolate;
    min-height: clamp(560px, 68vw, 760px);
    overflow: hidden;
    position: relative;
}

.mpt-why-choose-overlay {
    background:
        linear-gradient(90deg, rgba(8, 13, 18, .12) 0%, rgba(8, 13, 18, .34) 42%, rgba(8, 13, 18, .92) 100%),
        linear-gradient(180deg, rgba(8, 13, 18, .18) 0%, rgba(8, 13, 18, .36) 100%);
    inset: 0;
    position: absolute;
    z-index: -1;
}

.mpt-why-choose-hero .container,
.mpt-why-choose-hero .row {
    min-height: inherit;
}

.mpt-why-choose-hero .row {
    align-items: center;
}

.mpt-why-choose-content {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.mpt-why-choose-kicker {
    align-items: center;
    color: #f7b500;
    display: inline-flex;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.mpt-why-choose-content h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.65rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 1.15rem;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.mpt-why-choose-content p {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0 0 1.6rem;
}

.mpt-why-choose-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpt-why-choose-grid div {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .94);
    display: flex;
    gap: .72rem;
    min-height: 48px;
    padding: .2rem 0 .85rem;
}

.mpt-why-choose-grid i {
    align-items: center;
    background: rgba(247, 181, 0, .16);
    border: 1px solid rgba(247, 181, 0, .34);
    color: #f7b500;
    display: inline-flex;
    flex: 0 0 34px;
    font-size: .95rem;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.mpt-why-choose-grid span {
    font-size: .94rem;
    font-weight: 800;
    line-height: 1.25;
}

@media (max-width: 991.98px) {
    .mpt-why-choose-overlay {
        background:
            linear-gradient(180deg, rgba(8, 13, 18, .28) 0%, rgba(8, 13, 18, .92) 100%),
            rgba(8, 13, 18, .18);
    }

    .mpt-why-choose-content {
        padding: 5rem 0;
    }
}

@media (max-width: 575.98px) {
    .mpt-why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.mpt-selected-tours-section {
    background: #f8f3ea;
    padding: clamp(4.25rem, 7vw, 6.5rem) 0;
}

.mpt-selected-tours-head {
    margin: 0 auto 2.25rem;
    max-width: 760px;
    text-align: center;
}

.mpt-selected-tours-kicker {
    color: #e05a13;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: .8rem;
    text-transform: uppercase;
}

.mpt-selected-tours-head h2 {
    color: #25272d;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 .85rem;
    text-transform: capitalize;
}

.mpt-selected-tours-head p {
    color: #686b72;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.mpt-selected-tours-grid {
    align-items: stretch;
}

.mpt-selected-tour-card {
    background: #1c2638;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(29, 31, 38, .12);
    color: #fff;
    display: block;
    height: 100%;
    isolation: isolate;
    min-height: clamp(320px, 36vw, 460px);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transform: translateY(0);
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.mpt-selected-tour-card--wide {
    min-height: clamp(330px, 36vw, 470px);
}

.mpt-selected-tour-card:hover,
.mpt-selected-tour-card:focus {
    border-color: rgba(224, 90, 19, .48);
    box-shadow: 0 24px 56px rgba(29, 31, 38, .2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-5px);
}

.mpt-selected-tour-card:focus-visible {
    outline: 3px solid rgba(224, 90, 19, .55);
    outline-offset: 4px;
}

.mpt-selected-tour-card img,
.mpt-selected-tour-card__shade,
.mpt-selected-tour-card__content {
    inset: 0;
    position: absolute;
}

.mpt-selected-tour-card img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: filter .45s ease, transform .75s ease;
    width: 100%;
    z-index: -2;
}

.mpt-selected-tour-card__shade {
    background:
        linear-gradient(180deg, rgba(32, 54, 137, .72) 0%, rgba(32, 54, 137, .24) 42%, rgba(15, 18, 26, .76) 100%),
        linear-gradient(90deg, rgba(15, 18, 26, .32) 0%, rgba(15, 18, 26, .04) 52%, rgba(15, 18, 26, .2) 100%);
    opacity: .92;
    transition: opacity .35s ease, transform .55s ease;
    z-index: -1;
}

.mpt-selected-tour-card__content {
    display: flex;
    flex-direction: column;
    gap: .82rem;
    justify-content: flex-start;
    padding: clamp(1.3rem, 2.2vw, 2rem);
    text-align: center;
    transition: transform .35s ease;
}

.mpt-selected-tour-card--top-left .mpt-selected-tour-card__content,
.mpt-selected-tour-card--bottom-left .mpt-selected-tour-card__content {
    text-align: left;
}

.mpt-selected-tour-card--bottom-left .mpt-selected-tour-card__content {
    justify-content: flex-start;
}

.mpt-selected-tour-card__title {
    color: #fff;
    display: -webkit-box;
    font-size: clamp(1.22rem, 2vw, 2.05rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.03;
    overflow: hidden;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .34);
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mpt-selected-tour-card:not(.mpt-selected-tour-card--wide) .mpt-selected-tour-card__title {
    font-size: clamp(1.14rem, 1.65vw, 1.62rem);
}

.mpt-selected-tour-card__meta {
    align-items: center;
    color: rgba(255, 255, 255, .92);
    display: inline-flex;
    flex-wrap: wrap;
    font-size: .78rem;
    font-weight: 800;
    gap: .42rem;
    justify-content: center;
    line-height: 1.1;
}

.mpt-selected-tour-card--top-left .mpt-selected-tour-card__meta,
.mpt-selected-tour-card--bottom-left .mpt-selected-tour-card__meta {
    justify-content: flex-start;
}

.mpt-selected-tour-card__meta strong {
    background: rgba(239, 106, 42, .9);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    padding: .36rem .62rem;
}

.mpt-selected-tour-card__meta span {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: rgba(255, 255, 255, .9);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
    padding: .34rem .6rem;
}

.mpt-selected-tour-card__location {
    color: rgba(255, 255, 255, .92);
    display: -webkit-box;
    font-size: .91rem;
    font-weight: 700;
    line-height: 1.35;
    overflow: hidden;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .28);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mpt-selected-tour-card__cta {
    align-items: center;
    align-self: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 900;
    gap: .48rem;
    line-height: 1;
    margin-top: .2rem;
    opacity: 0;
    padding: .7rem 1rem;
    transform: translateY(10px);
    transition: background .35s ease, opacity .35s ease, transform .35s ease;
}

.mpt-selected-tour-card--top-left .mpt-selected-tour-card__cta,
.mpt-selected-tour-card--bottom-left .mpt-selected-tour-card__cta {
    align-self: flex-start;
}

.mpt-selected-tour-card:hover img,
.mpt-selected-tour-card:focus img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.075);
}

.mpt-selected-tour-card:hover .mpt-selected-tour-card__shade,
.mpt-selected-tour-card:focus .mpt-selected-tour-card__shade {
    opacity: 1;
}

.mpt-selected-tour-card:hover .mpt-selected-tour-card__content,
.mpt-selected-tour-card:focus .mpt-selected-tour-card__content {
    transform: translateY(-4px);
}

.mpt-selected-tour-card:hover .mpt-selected-tour-card__cta,
.mpt-selected-tour-card:focus .mpt-selected-tour-card__cta {
    background: rgba(224, 90, 19, .92);
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .mpt-selected-tour-card,
    .mpt-selected-tour-card--wide {
        min-height: 360px;
    }
}

@media (max-width: 575.98px) {
    .mpt-selected-tours-section {
        padding: 3.5rem 0;
    }

    .mpt-selected-tour-card,
    .mpt-selected-tour-card--wide {
        min-height: 330px;
    }

    .mpt-selected-tour-card__content {
        padding: 1.2rem;
    }

    .mpt-selected-tour-card__title {
        font-size: 1.25rem;
    }
}

.mpt-adventure-cta-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(224, 90, 19, .08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    position: relative;
}

.mpt-adventure-cta-section::before {
    background:
        linear-gradient(135deg, rgba(18, 91, 138, .08) 25%, transparent 25%) 0 0 / 22px 22px,
        linear-gradient(135deg, transparent 75%, rgba(224, 90, 19, .08) 75%) 0 0 / 22px 22px;
    content: "";
    height: 280px;
    opacity: .5;
    position: absolute;
    right: -90px;
    top: 46px;
    transform: rotate(-8deg);
    width: 360px;
}

.mpt-adventure-cta-media {
    border-radius: 8px;
    box-shadow: 0 28px 68px rgba(27, 31, 39, .16);
    isolation: isolate;
    min-height: clamp(420px, 48vw, 620px);
    overflow: hidden;
    position: relative;
}

.mpt-adventure-cta-media::before,
.mpt-adventure-cta-media::after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.mpt-adventure-cta-media::before {
    background: linear-gradient(180deg, rgba(9, 16, 25, .02) 0%, rgba(9, 16, 25, .58) 100%);
    inset: 0;
    z-index: 1;
}

.mpt-adventure-cta-media::after {
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 8px;
    inset: 14px;
    z-index: 2;
}

.mpt-adventure-cta-media img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transform: scale(1.01);
    transition: transform .8s ease;
    width: 100%;
}

.mpt-adventure-cta-media:hover img {
    transform: scale(1.055);
}

.mpt-adventure-cta-chip {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    bottom: 24px;
    box-shadow: 0 16px 36px rgba(20, 26, 36, .18);
    color: #1f2933;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 900;
    gap: .5rem;
    left: 24px;
    line-height: 1;
    padding: .78rem 1rem;
    position: absolute;
    text-transform: uppercase;
    z-index: 3;
}

.mpt-adventure-cta-chip i {
    color: #e05a13;
    font-size: .95rem;
}

.mpt-adventure-cta-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.mpt-adventure-cta-kicker {
    align-items: center;
    color: #e05a13;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.mpt-adventure-cta-content h2 {
    color: #111827;
    font-size: clamp(2rem, 4.2vw, 4rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .94;
    margin: 0 0 1.65rem;
    max-width: 680px;
    text-transform: uppercase;
}

.mpt-adventure-cta-list {
    display: grid;
    gap: 1.15rem;
    margin-bottom: 2rem;
}

.mpt-adventure-cta-list div {
    align-items: flex-start;
    display: grid;
    gap: .92rem;
    grid-template-columns: 34px minmax(0, 1fr);
}

.mpt-adventure-cta-list i {
    align-items: center;
    background: rgba(18, 91, 138, .1);
    border: 1px solid rgba(18, 91, 138, .16);
    border-radius: 50%;
    color: #125b8a;
    display: inline-flex;
    font-size: .98rem;
    height: 34px;
    justify-content: center;
    margin-top: .1rem;
    width: 34px;
}

.mpt-adventure-cta-list p {
    color: #656b73;
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.68;
    margin: 0;
}

.mpt-adventure-cta-button {
    align-items: center;
    background: #125b8a;
    border: 1px solid rgba(18, 91, 138, .35);
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(18, 91, 138, .22);
    color: #fff;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 900;
    gap: .65rem;
    justify-content: center;
    line-height: 1;
    min-height: 54px;
    min-width: 232px;
    padding: .95rem 1.45rem;
    text-decoration: none;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.mpt-adventure-cta-button:hover,
.mpt-adventure-cta-button:focus {
    background: #e05a13;
    box-shadow: 0 20px 44px rgba(224, 90, 19, .26);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
}

.mpt-adventure-cta-button:focus-visible {
    outline: 3px solid rgba(224, 90, 19, .42);
    outline-offset: 4px;
}

.mpt-adventure-cta-button i {
    font-size: 1.08rem;
}

@media (max-width: 991.98px) {
    .mpt-adventure-cta-media {
        min-height: 480px;
    }

    .mpt-adventure-cta-content h2 {
        font-size: clamp(2rem, 8vw, 3.1rem);
    }
}

@media (max-width: 575.98px) {
    .mpt-adventure-cta-section {
        padding: 3.5rem 0;
    }

    .mpt-adventure-cta-media {
        min-height: 390px;
    }

    .mpt-adventure-cta-chip {
        bottom: 18px;
        left: 18px;
    }

    .mpt-adventure-cta-list div {
        grid-template-columns: 30px minmax(0, 1fr);
    }

    .mpt-adventure-cta-list i {
        font-size: .86rem;
        height: 30px;
        width: 30px;
    }

    .mpt-adventure-cta-list p {
        font-size: .96rem;
    }

    .mpt-adventure-cta-button {
        width: 100%;
    }
}

.mpt-front-tour-carousel {
    background: #fff;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    position: relative;
}

.mpt-front-tour-carousel::before {
    background:
        linear-gradient(135deg, rgba(18, 91, 138, .08) 0 1px, transparent 1px 18px),
        radial-gradient(circle at 84% 8%, rgba(224, 90, 19, .08), transparent 32%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.mpt-front-tour-carousel .container {
    position: relative;
    z-index: 1;
}

.mpt-front-tour-carousel__head {
    align-items: flex-end;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin: 0 0 2rem;
}

.mpt-front-tour-carousel__head > div:first-child {
    max-width: 850px;
}

.mpt-front-tour-carousel__kicker {
    color: #e05a13;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: .9rem;
    text-transform: uppercase;
}

.mpt-front-tour-carousel__head h2 {
    color: #111827;
    font-size: clamp(2rem, 4.7vw, 4.4rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .95;
    margin: 0 0 1rem;
    max-width: 980px;
    text-transform: uppercase;
}

.mpt-front-tour-carousel__head p {
    color: #767a82;
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    max-width: 820px;
}

.mpt-front-tour-carousel__controls {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: .75rem;
    padding-bottom: .25rem;
}

.mpt-front-tour-carousel__button {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(18, 91, 138, .18);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(19, 27, 38, .1);
    color: #125b8a;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: border-color .3s ease, box-shadow .3s ease, color .3s ease, transform .3s ease;
    width: 48px;
}

.mpt-front-tour-carousel__button::before {
    background: #125b8a;
    border-radius: inherit;
    content: "";
    inset: 0;
    position: absolute;
    transform: scale(.2);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
}

.mpt-front-tour-carousel__button i {
    font-size: .95rem;
    position: relative;
    transition: transform .3s ease;
    z-index: 1;
}

.mpt-front-tour-carousel__button:hover,
.mpt-front-tour-carousel__button:focus {
    border-color: rgba(18, 91, 138, .34);
    box-shadow: 0 18px 38px rgba(18, 91, 138, .18);
    color: #fff;
    transform: translateY(-3px);
}

.mpt-front-tour-carousel__button:hover::before,
.mpt-front-tour-carousel__button:focus::before {
    opacity: 1;
    transform: scale(1);
}

.mpt-front-tour-carousel__button--prev:hover i,
.mpt-front-tour-carousel__button--prev:focus i {
    transform: translateX(-3px);
}

.mpt-front-tour-carousel__button--next:hover i,
.mpt-front-tour-carousel__button--next:focus i {
    transform: translateX(3px);
}

.mpt-front-tour-swiper {
    margin: -12px;
    padding: 12px 12px 56px;
}

.mpt-front-tour-swiper .swiper-wrapper {
    align-items: stretch;
}

.mpt-front-tour-swiper .swiper-slide {
    display: flex;
}

.mpt-front-tour-carousel .mpt-front-tour-card {
    height: 100%;
    width: 100%;
}

.mpt-front-tour-carousel__pagination {
    align-items: center;
    bottom: 8px !important;
    display: flex;
    justify-content: center;
}

.mpt-front-tour-carousel__pagination .swiper-pagination-bullet {
    background: rgba(18, 91, 138, .25);
    border-radius: 999px;
    height: 8px;
    opacity: 1;
    transition: background .3s ease, transform .3s ease, width .3s ease;
    width: 8px;
}

.mpt-front-tour-carousel__pagination .swiper-pagination-bullet-active {
    background: #e05a13;
    box-shadow: 0 8px 18px rgba(224, 90, 19, .24);
    transform: translateY(-1px);
    width: 30px;
}

@media (max-width: 991.98px) {
    .mpt-front-tour-carousel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .mpt-front-tour-carousel__controls {
        padding-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .mpt-front-tour-carousel {
        padding: 3.5rem 0;
    }

    .mpt-front-tour-carousel__button {
        height: 44px;
        width: 44px;
    }

    .mpt-front-tour-swiper {
        margin: -8px;
        padding: 8px 8px 52px;
    }
}

.mpt-front-tour-grid-section {
    background:
        linear-gradient(180deg, #f8f3ea 0%, #fff 100%);
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.mpt-front-tour-grid-section__head {
    margin: 0 auto 2.35rem;
    max-width: 820px;
    text-align: center;
}

.mpt-front-tour-grid-section__kicker {
    color: #e05a13;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: .9rem;
    text-transform: uppercase;
}

.mpt-front-tour-grid-section__head h2 {
    color: #111827;
    font-size: clamp(2.1rem, 4.4vw, 4rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .96;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.mpt-front-tour-grid-section__head p {
    color: #727780;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.mpt-front-tour-grid-section__grid {
    align-items: stretch;
}

@media (max-width: 575.98px) {
    .mpt-front-tour-grid-section {
        padding: 3.5rem 0;
    }
}

.mpt-experience-card {
    aspect-ratio: 6 / 5.6;
    background: #111827;
    color: #fff;
    display: block;
    isolation: isolate;
    min-height: 336px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: box-shadow .35s ease;
}

.mpt-experience-card:hover,
.mpt-experience-card:focus {
    color: #fff;
    text-decoration: none;
}

.mpt-experience-card:focus-visible {
    outline: 3px solid rgba(112, 180, 83, .78);
    outline-offset: 4px;
}

.mpt-experience-card__image,
.mpt-experience-card__overlay {
    inset: 0;
    position: absolute;
}

.mpt-experience-card__image {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: filter .35s ease, transform .55s ease;
    width: 100%;
    z-index: -2;
}

.mpt-experience-card__overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .16) 38%, rgba(0, 0, 0, .82) 100%),
        rgba(0, 0, 0, .1);
    transition: background .35s ease;
    z-index: -1;
}

.mpt-experience-card__badge {
    background: rgba(255, 255, 255, .94);
    border-radius: 999px;
    color: #e95b0c;
    display: inline-flex;
    font-size: .6rem;
    font-weight: 800;
    left: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: .16em;
    line-height: 1;
    padding: 10px 20px;
    position: absolute;
    top: clamp(1.4rem, 3vw, 2.2rem);
    z-index: 2;
}
.mpt-experience-card__content {
    align-items: flex-end;
    display: flex;
    height: 100%;
    padding: clamp(1.6rem, 3vw, 2.2rem);
}

.mpt-experience-card__summary {
    max-width: 100%;
    transform: translateY(calc(100% - 7.8rem));
    transition: transform .82s cubic-bezier(.22, .61, .36, 1);
    width: 100%;
}

.mpt-experience-card__location {
    font-size: 0.8rem;
    color: rgb(255 216 0);
    line-height: 1.35;
    margin: 0 0 .2rem;
    text-shadow: 0 12px 26px rgba(0, 0, 0, .46);
}

.mpt-experience-card__title {
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 .75rem;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .46);
}

.mpt-experience-card__divider {
    background: rgba(255, 255, 255, .55);
    height: 1px;
    margin-bottom: .75rem;
    width: 100%;
}

.mpt-experience-card__price {
    font-weight: 900;
    color: rgba(255, 255, 255, .94);
    font-size: 1rem;
    line-height: 1.35;
    margin: 0;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .42);
}

.mpt-experience-card__excerpt {
    color: rgba(255, 255, 255, .94);
    font-size: 0.8rem;
    line-height: 1.58;
    margin: 1rem 0 1rem 0;
    max-width: 36rem;
    opacity: 0;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .52);
    transform: translateY(14px);
    transition: opacity .72s ease .18s, transform .72s ease .18s;
}

.mpt-experience-card__button {
    background: #e95b0c;
    color: #fff;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: .03em;
    line-height: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
}

.mpt-experience-card:hover,
.mpt-experience-card:focus-visible {
    box-shadow: 0 30px 70px rgba(17, 24, 39, .22);
}

.mpt-experience-card:hover .mpt-experience-card__image {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.07);
}

.mpt-experience-card:hover .mpt-experience-card__overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .16) 38%, rgba(0, 0, 0, .88) 100%),
        rgba(0, 0, 0, .1);
}

.mpt-experience-card:hover .mpt-experience-card__summary,
.mpt-experience-card:focus-visible .mpt-experience-card__summary {
    transform: translateY(0);
}

.mpt-experience-card:hover .mpt-experience-card__excerpt,
.mpt-experience-card:focus-visible .mpt-experience-card__excerpt {
    opacity: 1;
    transform: translateY(0);
}

.mpt-mapi-section {
    background: #f6f3ed;
}

.mpt-mapi-card {
    background: #17212b;
    border-radius: 8px;
    color: #fff;
    display: block;
    isolation: isolate;
    min-height: clamp(320px, 34vw, 520px);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: box-shadow .35s ease, transform .35s ease;
}

.mpt-mapi-card:hover,
.mpt-mapi-card:focus {
    color: #fff;
    text-decoration: none;
}

.mpt-mapi-card:focus-visible {
    outline: 3px solid rgba(255, 112, 44, .72);
    outline-offset: 4px;
}

.mpt-mapi-card__image,
.mpt-mapi-card__overlay {
    inset: 0;
    position: absolute;
}

.mpt-mapi-card__image {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: filter .45s ease, transform .75s ease;
    width: 100%;
    z-index: -2;
}

.mpt-mapi-card__overlay {
    background:
        linear-gradient(180deg, rgba(18, 18, 18, .62) 0%, rgba(18, 18, 18, .22) 42%, rgba(18, 18, 18, .76) 100%),
        rgba(12, 12, 12, .18);
    transition: background .45s ease;
    z-index: -1;
}

.mpt-mapi-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.2rem, 2vw, 1.7rem);
    position: relative;
    text-align: center;
    z-index: 1;
}

.mpt-mapi-card--top .mpt-mapi-card__content {
    justify-content: flex-start;
}

.mpt-mapi-card--bottom .mpt-mapi-card__content {
    justify-content: flex-end;
    text-align: left;
}

.mpt-mapi-card__title {
    color: #fff;
    font-size: clamp(1.55rem, 2.8vw, 3.1rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .95;
    margin: 0 0 .8rem;
    text-shadow: 0 4px 0 rgba(0, 0, 0, .18), 0 14px 30px rgba(0, 0, 0, .28);
    text-transform: uppercase;
}

.mpt-mapi-card__meta {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: center;
    margin: 0 auto .75rem;
}

.mpt-mapi-card--bottom .mpt-mapi-card__meta {
    justify-content: flex-start;
    margin-left: 0;
}

.mpt-mapi-card__meta span {
    background: #ff7132;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1;
    padding: .45rem .75rem;
}

.mpt-mapi-card__meta strong {
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, .34);
}

.mpt-mapi-card__location {
    color: rgba(255, 255, 255, .94);
    font-size: clamp(.9rem, 1.25vw, 1.08rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 auto;
    max-width: 36rem;
    text-shadow: 0 12px 24px rgba(0, 0, 0, .34);
}

.mpt-mapi-card--bottom .mpt-mapi-card__location {
    margin-left: 0;
}

.mpt-mapi-card:hover,
.mpt-mapi-card:focus-visible {
    box-shadow: 0 24px 55px rgba(21, 41, 91, .2);
    transform: translateY(-3px);
}

.mpt-mapi-card:hover .mpt-mapi-card__image,
.mpt-mapi-card:focus-visible .mpt-mapi-card__image {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.06);
}

.mpt-mapi-card:hover .mpt-mapi-card__overlay,
.mpt-mapi-card:focus-visible .mpt-mapi-card__overlay {
    background:
        linear-gradient(180deg, rgba(18, 18, 18, .5) 0%, rgba(18, 18, 18, .18) 42%, rgba(18, 18, 18, .82) 100%),
        rgba(255, 113, 50, .08);
}

.mpt-about-soft {
    background: var(--mpt-about-soft);
    border-bottom: 1px solid var(--mpt-about-line);
    border-top: 1px solid var(--mpt-about-line);
}

.mpt-about-copy {
    color: var(--mpt-about-muted);
    font-size: 1.04rem;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.mpt-about-image,
.mpt-about-cert {
    margin: 0;
}

.mpt-about-image {
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 33, 43, .14);
    overflow: hidden;
}

.mpt-about-image img {
    aspect-ratio: 1.32 / 1;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
    width: 100%;
}

.mpt-about-image:hover img {
    transform: scale(1.045);
}

.mpt-about-cert {
    align-items: center;
    background: #fff;
    border: 1px solid var(--mpt-about-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .08);
    display: flex;
    justify-content: center;
    min-height: 240px;
    padding: clamp(1.4rem, 4vw, 2.4rem);
}

.mpt-about-cert img {
    display: block;
    height: auto;
    max-width: 100%;
}

.mpt-about-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.mpt-about-stats div {
    border-left: 2px solid var(--mpt-about-green);
    padding-left: 1rem;
}

.mpt-about-stats strong {
    color: var(--mpt-about-ink);
    display: block;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
}

.mpt-about-stats span {
    color: var(--mpt-about-muted);
    display: block;
    font-size: .92rem;
    line-height: 1.45;
    margin-top: .45rem;
}

.mpt-about-support {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.7rem;
}

.mpt-about-support span {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(112, 180, 83, .28);
    border-radius: 999px;
    color: var(--mpt-about-ink);
    display: inline-flex;
    font-size: .92rem;
    font-weight: 800;
    gap: .5rem;
    padding: .68rem 1rem;
}

.mpt-about-support i {
    color: var(--mpt-about-green-dark);
}

.mpt-about-history {
    background: #fff;
    border: 1px solid var(--mpt-about-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .06);
    padding: clamp(1.5rem, 5vw, 3.25rem);
}

.mpt-about-history-grid {
    display: grid;
    gap: clamp(1.2rem, 3vw, 2rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpt-about-history-grid p {
    color: var(--mpt-about-muted);
    line-height: 1.8;
    margin: 0;
}

.mpt-about-mission {
    background: var(--mpt-about-ink);
}

.mpt-about-value-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    height: 100%;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.mpt-about-value-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(112, 180, 83, .45);
    transform: translateY(-5px);
}

.mpt-about-card-icon {
    align-items: center;
    border: 1px solid rgba(112, 180, 83, .45);
    border-radius: 50%;
    color: var(--mpt-about-green);
    display: inline-flex;
    font-size: 1.25rem;
    height: 52px;
    justify-content: center;
    margin-bottom: 1.4rem;
    width: 52px;
}

.mpt-about-value-card h2 {
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 .9rem;
}

.mpt-about-value-card p {
    color: rgba(255, 255, 255, .76);
    line-height: 1.8;
    margin: 0;
}

.mpt-about-team-section {
    background: var(--mpt-about-soft);
}

.mpt-about-team-head {
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    max-width: 780px;
    text-align: center;
}

.mpt-about-team-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpt-about-team-card {
    background: #fff;
    border: 1px solid var(--mpt-about-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(23, 33, 43, .06);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.mpt-about-team-card:hover {
    border-color: rgba(112, 180, 83, .45);
    box-shadow: 0 24px 60px rgba(23, 33, 43, .11);
    transform: translateY(-6px);
}

.mpt-about-team-card figure {
    background: #e9eee7;
    margin: 0;
    overflow: hidden;
}

.mpt-about-team-card img {
    aspect-ratio: 1.04 / 1;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%;
}

.mpt-about-team-card:hover img {
    transform: scale(1.05);
}

.mpt-about-team-card div {
    padding: 1.2rem 1.25rem 1.3rem;
}

.mpt-about-team-card h3 {
    color: var(--mpt-about-ink);
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 .32rem;
}

.mpt-about-team-card p {
    color: var(--mpt-about-green-dark);
    font-size: .94rem;
    font-weight: 800;
    margin: 0;
}

@media (max-width: 991.98px) {
    .mpt-about-hero {
        min-height: 600px;
    }

    .mpt-about-history-grid,
    .mpt-about-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .mpt-experience-card {
        aspect-ratio: 4 / 5;
        min-height: 300px;
    }

    .mpt-mapi-card {
        min-height: 320px;
    }

    .mpt-mapi-card__content,
    .mpt-mapi-card--bottom .mpt-mapi-card__content {
        justify-content: flex-end;
        text-align: left;
    }

    .mpt-mapi-card__meta,
    .mpt-mapi-card--bottom .mpt-mapi-card__meta,
    .mpt-mapi-card__location,
    .mpt-mapi-card--bottom .mpt-mapi-card__location {
        justify-content: flex-start;
        margin-left: 0;
    }

    .mpt-about-hero::before {
        background: linear-gradient(180deg, rgba(9, 15, 20, .44) 0%, rgba(9, 15, 20, .84) 100%);
    }

    .mpt-about-hero-inner {
        padding-top: 8rem;
    }

    .mpt-about-stats,
    .mpt-about-history-grid,
    .mpt-about-team-grid {
        grid-template-columns: 1fr;
    }

    .mpt-about-support span {
        width: 100%;
    }
}

/**
 * Source: page-basic-content.php
 */
.mpt-basic-page {
    --mpt-basic-ink: #17212b;
    --mpt-basic-muted: #66727d;
    --mpt-basic-line: #dde4e9;
    --mpt-basic-soft: #f6f8f7;
    --mpt-basic-paper: #ffffff;
    --mpt-basic-accent: #004f8c;
    background: var(--mpt-basic-paper);
    color: var(--mpt-basic-ink);
    overflow: hidden;
}

.mpt-basic-page a {
    color: #004f8c;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.mpt-basic-hero {
    min-height: clamp(420px, 58vh, 620px);
    overflow: hidden;
    position: relative;
}

.mpt-basic-hero::before {
    background: linear-gradient(90deg, rgba(9, 15, 20, .78) 0%, rgba(9, 15, 20, .42) 52%, rgba(9, 15, 20, .2) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-basic-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.04);
    width: 100%;
}

.mpt-basic-hero-inner {
    align-items: flex-end;
    display: flex;
    inset: 0;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
}

.mpt-basic-title {
    color: #fff;
    font-size: clamp(2.55rem, 6vw, 5.2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .98;
    margin: .75rem 0 1.1rem;
    max-width: 920px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.mpt-basic-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
    line-height: 1.75;
    margin: 0;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .36);
}

.mpt-basic-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.mpt-basic-content {
    background: #fff;
    border: 1px solid var(--mpt-basic-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .06);
    color: var(--mpt-basic-muted);
    font-size: 1.03rem;
    line-height: 1.85;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.mpt-basic-content > :first-child {
    margin-top: 0;
}

.mpt-basic-content > :last-child {
    margin-bottom: 0;
}

.mpt-basic-content h2,
.mpt-basic-content h3,
.mpt-basic-content h4,
.mpt-basic-content h5,
.mpt-basic-content h6 {
    color: var(--mpt-basic-ink);
    font-weight: 900;
    line-height: 1.15;
    margin: 2rem 0 1rem;
}

.mpt-basic-content h2 {
    font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.mpt-basic-content h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.mpt-basic-content p {
    margin: 0 0 1rem;
}

.mpt-basic-content ul,
.mpt-basic-content ol {
    margin: 0 0 1.2rem 1.4rem;
    padding: 0;
}

.mpt-basic-content li {
    margin: 0 0 .55rem;
}

.mpt-basic-content img {
    height: auto;
    max-width: 100%;
}

.mpt-basic-content figure {
    margin: 1.5rem 0;
}

.mpt-basic-content blockquote {
    border-left: 4px solid var(--mpt-basic-accent);
    color: var(--mpt-basic-ink);
    font-size: 1.05rem;
    font-style: italic;
    margin: 1.6rem 0;
    padding: .25rem 0 .25rem 1.2rem;
}

.mpt-basic-content table {
    border-collapse: collapse;
    margin: 1.5rem 0;
    width: 100%;
}

.mpt-basic-content th,
.mpt-basic-content td {
    border: 1px solid var(--mpt-basic-line);
    padding: .85rem 1rem;
    text-align: left;
    vertical-align: top;
}

.mpt-basic-content th {
    background: var(--mpt-basic-soft);
    color: var(--mpt-basic-ink);
}

.mpt-basic-content hr {
    background: var(--mpt-basic-line);
    border: 0;
    height: 1px;
    margin: 2rem 0;
}

.mpt-basic-content .page-links {
    margin-top: 2rem;
}

.mpt-basic-content .page-links a,
.mpt-basic-content .page-links span {
    border: 1px solid var(--mpt-basic-line);
    border-radius: 999px;
    display: inline-block;
    margin: .25rem .35rem .25rem 0;
    padding: .45rem .9rem;
}

@media (max-width: 767.98px) {
    .mpt-basic-content {
        padding: 1.25rem;
    }

    .mpt-basic-content ul,
    .mpt-basic-content ol {
        margin-left: 1.2rem;
    }
}

/**
 * Source: page-esnna-policies.php
 */
.mpt-esnna-page {
    --mpt-esnna-ink: #17212b;
    --mpt-esnna-muted: #66727d;
    --mpt-esnna-line: #dde4e9;
    --mpt-esnna-soft: #f6f8f7;
    --mpt-esnna-paper: #ffffff;
    --mpt-esnna-green: #004f8c;
    --mpt-esnna-green-dark: #003a66;
    --mpt-esnna-blue: #1598bd;
    background: var(--mpt-esnna-paper);
    color: var(--mpt-esnna-ink);
    overflow: hidden;
}

.mpt-esnna-page *,
.mpt-esnna-page *::before,
.mpt-esnna-page *::after {
    box-sizing: border-box;
}

.mpt-esnna-page a {
    color: inherit;
    text-decoration: none;
}

.mpt-esnna-hero {
    color: #fff;
    min-height: clamp(520px, 68vh, 720px);
    overflow: hidden;
    position: relative;
}

.mpt-esnna-hero::before {
    background:
        linear-gradient(90deg, rgba(9, 16, 25, .9) 0%, rgba(9, 16, 25, .62) 48%, rgba(9, 16, 25, .18) 100%),
        linear-gradient(180deg, rgba(9, 16, 25, .16), rgba(9, 16, 25, .35));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-esnna-hero img {
    animation: mptHeroDrift 18s ease-out forwards;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.mpt-esnna-hero-inner {
    align-items: center;
    display: flex;
    min-height: inherit;
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
    position: relative;
    z-index: 2;
}

.mpt-esnna-title {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .96;
    margin: 0 0 1rem;
    max-width: 850px;
    text-shadow: 0 18px 46px rgba(0, 0, 0, .42);
    text-transform: uppercase;
}

.mpt-esnna-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 1.55vw, 1.2rem);
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
}

.mpt-esnna-hero-link {
    align-items: center;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    color: var(--mpt-esnna-ink) !important;
    display: inline-flex;
    font-size: .88rem;
    font-weight: 800;
    gap: .65rem;
    justify-content: center;
    letter-spacing: 0;
    margin-top: 1.7rem;
    min-height: 48px;
    padding: .82rem 1.15rem;
    text-transform: uppercase;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.mpt-esnna-hero-link:hover {
    background: #f4efe7;
    border-color: #f4efe7;
    color: var(--mpt-esnna-ink) !important;
    transform: translateY(-2px);
}

.mpt-esnna-subnav {
    background: #fff;
    border-bottom: 1px solid var(--mpt-esnna-line);
    position: sticky;
    top: 0;
    z-index: 9;
}

.mpt-esnna-subnav .container {
    display: flex;
    gap: clamp(1.15rem, 4vw, 3rem);
    overflow-x: auto;
    scrollbar-width: none;
}

.mpt-esnna-subnav .container::-webkit-scrollbar {
    display: none;
}

.mpt-esnna-subnav a {
    color: var(--mpt-esnna-muted);
    flex: 0 0 auto;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 1.05rem 0;
    text-transform: uppercase;
    transition: color .2s ease;
}

.mpt-esnna-subnav a:hover {
    color: var(--mpt-esnna-green-dark);
}

.mpt-esnna-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    scroll-margin-top: 70px;
}

.mpt-esnna-soft {
    background: var(--mpt-esnna-soft);
    border-bottom: 1px solid var(--mpt-esnna-line);
    border-top: 1px solid var(--mpt-esnna-line);
}

.mpt-esnna-section-head {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 820px;
}

.mpt-esnna-heading {
    color: var(--mpt-esnna-ink);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 1.25rem;
}

.mpt-esnna-rule {
    background: var(--mpt-esnna-green);
    display: block;
    height: 3px;
    width: 74px;
}

.mpt-esnna-editorial {
    max-width: 760px;
}

.mpt-esnna-editorial > p,
.mpt-esnna-copy {
    color: var(--mpt-esnna-muted);
    font-size: 1.04rem;
    line-height: 1.82;
    margin: 0 0 1.25rem;
}

.mpt-esnna-editorial .mpt-esnna-intro {
    color: var(--mpt-esnna-ink);
    font-size: clamp(1.12rem, 1.7vw, 1.3rem);
    line-height: 1.72;
}

.mpt-esnna-definition {
    align-items: flex-start;
    background: var(--mpt-esnna-soft);
    border-left: 3px solid var(--mpt-esnna-green);
    display: flex;
    gap: 1.25rem;
    margin: 2.2rem 0;
    padding: clamp(1.25rem, 3vw, 1.8rem);
}

.mpt-esnna-definition-icon {
    align-items: center;
    background: var(--mpt-esnna-ink);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 50px;
    font-size: 1.15rem;
    height: 50px;
    justify-content: center;
}

.mpt-esnna-definition h3,
.mpt-esnna-subheading {
    color: var(--mpt-esnna-ink);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 .55rem;
}

.mpt-esnna-definition p {
    color: var(--mpt-esnna-muted);
    line-height: 1.75;
    margin: 0;
}

.mpt-esnna-subheading {
    margin-top: 2.25rem;
}

.mpt-esnna-statement {
    border: 0;
    color: var(--mpt-esnna-ink);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    line-height: 1.55;
    margin: 1rem 0 1.5rem;
    padding: 0 0 0 1.4rem;
    position: relative;
}

.mpt-esnna-statement::before {
    background: var(--mpt-esnna-green);
    content: "";
    inset: .2rem auto .2rem 0;
    position: absolute;
    width: 3px;
}

.mpt-esnna-poster {
    background: #fff;
    border: 1px solid var(--mpt-esnna-line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 33, 43, .13);
    margin: 0;
    overflow: hidden;
    padding: clamp(.7rem, 2vw, 1rem);
}

.mpt-esnna-poster img {
    display: block;
    height: auto;
    width: 100%;
}

.mpt-esnna-poster figcaption {
    border-top: 1px solid var(--mpt-esnna-line);
    color: var(--mpt-esnna-muted);
    font-size: .8rem;
    line-height: 1.5;
    padding: 1rem .45rem .35rem;
}

.mpt-esnna-section-intro {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.mpt-esnna-commitments {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpt-esnna-card {
    background: #fff;
    border: 1px solid var(--mpt-esnna-line);
    border-radius: 8px;
    min-height: 280px;
    padding: clamp(1.4rem, 3vw, 2rem);
    position: relative;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.mpt-esnna-card:hover {
    border-color: rgba(112, 180, 83, .55);
    box-shadow: 0 20px 45px rgba(23, 33, 43, .09);
    transform: translateY(-5px);
}

.mpt-esnna-card > span {
    color: #d7ded9;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 1.4rem;
    top: 1.25rem;
}

.mpt-esnna-card > i {
    color: var(--mpt-esnna-green-dark);
    font-size: 1.5rem;
    margin: .35rem 0 2.2rem;
}

.mpt-esnna-card h3 {
    color: var(--mpt-esnna-ink);
    font-size: 1.24rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 .7rem;
}

.mpt-esnna-card p {
    color: var(--mpt-esnna-muted);
    line-height: 1.72;
    margin: 0;
}

.mpt-esnna-hospitality-note {
    align-items: flex-start;
    background: var(--mpt-esnna-ink);
    border-radius: 8px;
    color: #fff;
    display: flex;
    gap: 1.4rem;
    margin-top: 1.25rem;
    padding: clamp(1.4rem, 4vw, 2.2rem);
}

.mpt-esnna-hospitality-note > i {
    color: var(--mpt-esnna-green);
    font-size: 1.6rem;
    margin-top: .15rem;
}

.mpt-esnna-hospitality-note h3 {
    color: #fff;
    font-size: 1.22rem;
    font-weight: 900;
    margin: 0 0 .55rem;
}

.mpt-esnna-hospitality-note p {
    color: rgba(255, 255, 255, .74);
    line-height: 1.75;
    margin: 0;
}

.mpt-esnna-report {
    background: var(--mpt-esnna-ink);
}

.mpt-esnna-report .mpt-section-kicker {
    color: var(--mpt-esnna-green);
}

.mpt-esnna-report .mpt-esnna-heading {
    color: #fff;
}

.mpt-esnna-report .mpt-esnna-copy {
    color: rgba(255, 255, 255, .75);
}

.mpt-esnna-report-note {
    border-left: 2px solid var(--mpt-esnna-green);
    color: rgba(255, 255, 255, .86);
    line-height: 1.7;
    margin: 1.8rem 0 0;
    padding-left: 1rem;
}

.mpt-esnna-channels {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpt-esnna-channel {
    align-items: center;
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    color: #fff !important;
    display: grid;
    gap: .9rem;
    grid-template-columns: 42px 1fr auto;
    min-width: 0;
    padding: 1rem;
    transition: background-color .2s ease, border-color .2s ease;
}

.mpt-esnna-channel:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(112, 180, 83, .55);
}

.mpt-esnna-channel > span {
    align-items: center;
    background: rgba(112, 180, 83, .14);
    border-radius: 50%;
    color: var(--mpt-esnna-green);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.mpt-esnna-channel div {
    min-width: 0;
}

.mpt-esnna-channel small {
    color: rgba(255, 255, 255, .59);
    display: block;
    font-size: .7rem;
    line-height: 1.4;
}

.mpt-esnna-channel strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.25;
}

.mpt-esnna-channel > i {
    color: rgba(255, 255, 255, .45);
    font-size: .8rem;
}

.mpt-esnna-online-report {
    align-items: center;
    background: var(--mpt-esnna-green);
    border-radius: 8px;
    color: #122116 !important;
    display: flex;
    font-size: .9rem;
    font-weight: 900;
    justify-content: space-between;
    margin-top: .8rem;
    padding: 1rem 1.2rem;
}

.mpt-esnna-laws {
    border-top: 1px solid var(--mpt-esnna-line);
}

.mpt-esnna-law {
    align-items: center;
    border-bottom: 1px solid var(--mpt-esnna-line);
    display: grid;
    gap: clamp(1rem, 3vw, 2rem);
    grid-template-columns: 100px 1fr auto;
    padding: 1.5rem .5rem;
    transition: background-color .2s ease, padding .2s ease;
}

.mpt-esnna-law:hover {
    background: var(--mpt-esnna-soft);
    padding-left: 1rem;
    padding-right: 1rem;
}

.mpt-esnna-law > span {
    color: var(--mpt-esnna-green-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.mpt-esnna-law h3 {
    color: var(--mpt-esnna-ink);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 .35rem;
}

.mpt-esnna-law p {
    color: var(--mpt-esnna-muted);
    line-height: 1.6;
    margin: 0;
}

.mpt-esnna-law > i {
    color: var(--mpt-esnna-muted);
    font-size: .85rem;
}

.mpt-esnna-legal-note {
    color: var(--mpt-esnna-muted);
    font-size: .82rem;
    line-height: 1.65;
    margin: 2rem 0 0;
    max-width: 900px;
}

.mpt-esnna-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.mpt-esnna-animate.mpt-esnna-in-view {
    opacity: 1;
    transform: translateY(0);
}

.mpt-esnna-delay-1 {
    transition-delay: .1s;
}

.mpt-esnna-delay-2 {
    transition-delay: .2s;
}

@media (prefers-reduced-motion: reduce) {
    .mpt-esnna-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .mpt-esnna-hero {
        min-height: clamp(500px, 66vh, 620px);
    }

    .mpt-esnna-subnav {
        position: static;
    }

    .mpt-esnna-commitments {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mpt-esnna-poster {
        margin: 0 auto;
        max-width: 560px;
    }
}

@media (max-width: 767.98px) {
    .mpt-esnna-hero::before {
        background:
            linear-gradient(90deg, rgba(9, 16, 25, .88), rgba(9, 16, 25, .56)),
            linear-gradient(180deg, rgba(9, 16, 25, .16), rgba(9, 16, 25, .44));
    }

    .mpt-esnna-hero-inner {
        padding-bottom: 4rem;
        padding-top: 7rem;
    }

    .mpt-esnna-commitments,
    .mpt-esnna-channels {
        grid-template-columns: 1fr;
    }

    .mpt-esnna-card {
        min-height: 0;
    }

    .mpt-esnna-definition,
    .mpt-esnna-hospitality-note {
        display: block;
    }

    .mpt-esnna-definition-icon,
    .mpt-esnna-hospitality-note > i {
        margin-bottom: 1rem;
    }

    .mpt-esnna-law {
        align-items: start;
        grid-template-columns: 1fr auto;
    }

    .mpt-esnna-law > span {
        grid-column: 1 / -1;
    }

    .mpt-esnna-law > i {
        grid-column: 2;
        grid-row: 2;
    }
}

/**
 * Source: page-photo-gallery.php
 */
.mpt-gallery-page {
    --mpt-gallery-ink: #17212b;
    --mpt-gallery-muted: #66727d;
    --mpt-gallery-line: #dde4e9;
    --mpt-gallery-soft: #f6f8f7;
    --mpt-gallery-paper: #fff;
    --mpt-gallery-green: #004f8c;
    --mpt-gallery-green-dark: #003a66;
    background: var(--mpt-gallery-paper);
    color: var(--mpt-gallery-ink);
    overflow: hidden;
}

.mpt-gallery-page *,
.mpt-gallery-page *::before,
.mpt-gallery-page *::after {
    box-sizing: border-box;
}

.mpt-gallery-page a {
    color: inherit;
    text-decoration: none;
}

.mpt-gallery-hero {
    min-height: clamp(520px, 68vh, 720px);
    overflow: hidden;
    position: relative;
}

.mpt-gallery-hero::before {
    background: linear-gradient(90deg, rgba(9, 15, 20, .8) 0%, rgba(9, 15, 20, .46) 54%, rgba(9, 15, 20, .18) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-gallery-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.035);
    width: 100%;
}

.mpt-gallery-hero-inner {
    align-items: flex-end;
    display: flex;
    inset: 0;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
}

.mpt-gallery-title {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .98;
    margin: .75rem 0 1.2rem;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.mpt-gallery-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.7vw, 1.28rem);
    line-height: 1.75;
    margin: 0;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .36);
}

.mpt-gallery-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-top: 2rem;
}

.mpt-gallery-hero-meta span {
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mpt-gallery-hero-meta strong {
    color: var(--mpt-gallery-green);
    font-size: 1rem;
    margin-right: .35rem;
}

.mpt-gallery-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.mpt-gallery-heading-row {
    align-items: end;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .75fr);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.mpt-gallery-heading {
    color: var(--mpt-gallery-ink);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0;
}

.mpt-gallery-heading-row > p {
    color: var(--mpt-gallery-muted);
    line-height: 1.78;
    margin: 0;
}

.mpt-gallery-toolbar {
    align-items: center;
    border-bottom: 1px solid var(--mpt-gallery-line);
    border-top: 1px solid var(--mpt-gallery-line);
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.mpt-gallery-filters {
    display: flex;
    gap: .55rem;
    overflow-x: auto;
    padding: .1rem 0;
    scrollbar-width: none;
}

.mpt-gallery-filters::-webkit-scrollbar {
    display: none;
}

.mpt-gallery-filter {
    background: transparent;
    border: 1px solid var(--mpt-gallery-line);
    border-radius: 999px;
    color: var(--mpt-gallery-muted);
    cursor: pointer;
    flex: 0 0 auto;
    font-size: .8rem;
    font-weight: 800;
    line-height: 1;
    padding: .72rem .9rem;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.mpt-gallery-filter span {
    color: inherit;
    font-size: .68rem;
    margin-left: .25rem;
    opacity: .65;
}

.mpt-gallery-filter:hover,
.mpt-gallery-filter.is-active {
    background: var(--mpt-gallery-ink);
    border-color: var(--mpt-gallery-ink);
    color: #fff;
}

.mpt-gallery-result {
    color: var(--mpt-gallery-muted);
    flex: 0 0 auto;
    font-size: .78rem;
    margin: 0;
}

.mpt-gallery-result strong {
    color: var(--mpt-gallery-ink);
}

.mpt-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpt-gallery-item {
    background: #e8ede7;
    border-radius: 7px;
    margin: 0;
    min-width: 0;
    overflow: hidden;
}

.mpt-gallery-item[hidden] {
    display: none;
}

.mpt-gallery-item-wide {
    grid-column: span 2;
}

.mpt-gallery-item > a {
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.mpt-gallery-item img {
    aspect-ratio: 4 / 3;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
    width: 100%;
}

.mpt-gallery-item-wide img {
    aspect-ratio: 2.05 / 1;
}

.mpt-gallery-overlay {
    align-items: end;
    background: linear-gradient(180deg, transparent 38%, rgba(8, 14, 18, .82) 100%);
    color: #fff;
    display: flex;
    inset: 0;
    justify-content: space-between;
    opacity: 0;
    padding: 1.15rem;
    position: absolute;
    transition: opacity .3s ease;
}

.mpt-gallery-overlay small {
    color: var(--mpt-gallery-green);
    display: block;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mpt-gallery-overlay strong {
    display: block;
    font-size: .92rem;
    margin-top: .18rem;
}

.mpt-gallery-overlay > i {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.mpt-gallery-item:hover img {
    transform: scale(1.045);
}

.mpt-gallery-item:hover .mpt-gallery-overlay,
.mpt-gallery-item a:focus-visible .mpt-gallery-overlay {
    opacity: 1;
}

.mpt-gallery-empty {
    color: var(--mpt-gallery-muted);
    padding: 5rem 1rem;
    text-align: center;
}

.mpt-gallery-empty i {
    color: var(--mpt-gallery-green-dark);
    font-size: 2rem;
}

.mpt-gallery-cta {
    background: var(--mpt-gallery-ink);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.mpt-gallery-cta-inner {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.mpt-gallery-cta .mpt-section-kicker {
    color: var(--mpt-gallery-green);
}

.mpt-gallery-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
}

.mpt-gallery-cta a {
    align-items: center;
    background: var(--mpt-gallery-green);
    border-radius: 5px;
    color: #132018;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .86rem;
    font-weight: 900;
    gap: .75rem;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
}

.mpt-gallery-animate {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.mpt-gallery-animate.mpt-gallery-in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .mpt-gallery-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mpt-gallery-item img,
    .mpt-gallery-overlay {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .mpt-gallery-hero {
        min-height: 600px;
    }

    .mpt-gallery-heading-row {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .mpt-gallery-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .mpt-gallery-filters {
        max-width: 100%;
        width: 100%;
    }

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

@media (max-width: 575.98px) {
    .mpt-gallery-hero::before {
        background: linear-gradient(180deg, rgba(9, 15, 20, .36) 0%, rgba(9, 15, 20, .86) 100%);
    }

    .mpt-gallery-hero-inner {
        padding-top: 8rem;
    }

    .mpt-gallery-grid {
        gap: .75rem;
        grid-template-columns: 1fr;
    }

    .mpt-gallery-item-wide {
        grid-column: auto;
    }

    .mpt-gallery-item-wide img {
        aspect-ratio: 4 / 3;
    }

    .mpt-gallery-overlay {
        opacity: 1;
    }

    .mpt-gallery-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/**
 * Source: page-certifications-recognitions.php
 */
.mpt-awards-page {
    --mpt-awards-ink: #17212b;
    --mpt-awards-muted: #66727d;
    --mpt-awards-line: #dde4e9;
    --mpt-awards-soft: #f6f8f7;
    --mpt-awards-paper: #ffffff;
    --mpt-awards-green: #004f8c;
    --mpt-awards-green-dark: #003a66;
    background: var(--mpt-awards-paper);
    color: var(--mpt-awards-ink);
    overflow: hidden;
}

.mpt-awards-page a {
    color: inherit;
    text-decoration: none;
}

.mpt-awards-hero {
    min-height: clamp(520px, 68vh, 720px);
    overflow: hidden;
    position: relative;
}

.mpt-awards-hero::before {
    background: linear-gradient(90deg, rgba(9, 15, 20, .82) 0%, rgba(9, 15, 20, .45) 54%, rgba(9, 15, 20, .18) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-awards-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.04);
    width: 100%;
}

.mpt-awards-hero-inner {
    align-items: flex-end;
    display: flex;
    inset: 0;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
}

.mpt-awards-title {
    color: #fff;
    font-size: clamp(2.55rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: .98;
    margin: .75rem 0 1.1rem;
    max-width: 920px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.mpt-awards-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
    line-height: 1.75;
    margin: 0;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .36);
}

.mpt-awards-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.mpt-awards-soft {
    background: var(--mpt-awards-soft);
    border-bottom: 1px solid var(--mpt-awards-line);
    border-top: 1px solid var(--mpt-awards-line);
}

.mpt-awards-intro {
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    max-width: 920px;
    text-align: center;
}

.mpt-awards-intro h2,
.mpt-awards-heading-row h2,
.mpt-awards-why h2 {
    color: var(--mpt-awards-ink);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.mpt-awards-intro p,
.mpt-awards-heading-row p,
.mpt-awards-copy {
    color: var(--mpt-awards-muted);
    line-height: 1.8;
    margin: 0;
}

.mpt-awards-split {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: center;
}

.mpt-awards-card {
    background: #fff;
    border: 1px solid var(--mpt-awards-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .06);
    padding: clamp(1.5rem, 4vw, 2.8rem);
}

.mpt-awards-list {
    color: var(--mpt-awards-muted);
    line-height: 1.85;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.mpt-awards-list li {
    border-top: 1px solid var(--mpt-awards-line);
    margin: 0;
    padding: 1rem 0;
}

.mpt-awards-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.mpt-awards-list strong {
    color: var(--mpt-awards-ink);
}

.mpt-awards-media,
.mpt-awards-banner {
    margin: 0;
}

.mpt-awards-media {
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 33, 43, .12);
    overflow: hidden;
}

.mpt-awards-media img,
.mpt-awards-banner img {
    display: block;
    height: auto;
    width: 100%;
}

.mpt-awards-gallery {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpt-awards-gallery-item {
    background: #fff;
    border: 1px solid var(--mpt-awards-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .06);
    margin: 0;
    overflow: hidden;
}

.mpt-awards-gallery-item img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.mpt-awards-heading-row {
    align-items: end;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .75fr);
    margin-bottom: 1.5rem;
}

.mpt-awards-banner {
    border: 1px solid var(--mpt-awards-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .06);
    overflow: hidden;
}

.mpt-awards-widget {
    background: #fff;
    border: 1px solid var(--mpt-awards-line);
    border-radius: 8px;
    margin-top: 1.5rem;
    padding: clamp(1.3rem, 4vw, 2rem);
}

.mpt-awards-widget h3 {
    color: var(--mpt-awards-ink);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 900;
    margin: .4rem 0 .8rem;
}

.mpt-awards-why-list {
    background: #fff;
    border: 1px solid var(--mpt-awards-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .06);
    padding: clamp(1.3rem, 4vw, 2rem);
}

.mpt-awards-why-list p {
    border-top: 1px solid var(--mpt-awards-line);
    color: var(--mpt-awards-muted);
    line-height: 1.8;
    margin: 0;
    padding: 1rem 0;
}

.mpt-awards-why-list p:first-child {
    border-top: 0;
    padding-top: 0;
}

.mpt-awards-why-list strong {
    color: var(--mpt-awards-ink);
}

.mpt-awards-closing {
    background: var(--mpt-awards-soft);
    border: 1px solid var(--mpt-awards-line);
    border-radius: 8px;
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.mpt-awards-closing p {
    color: var(--mpt-awards-muted);
    line-height: 1.85;
    margin: 0 0 .9rem;
}

@media (max-width: 991.98px) {
    .mpt-awards-hero {
        min-height: 600px;
    }

    .mpt-awards-split,
    .mpt-awards-heading-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .mpt-awards-hero::before {
        background: linear-gradient(180deg, rgba(9, 15, 20, .4) 0%, rgba(9, 15, 20, .86) 100%);
    }

    .mpt-awards-hero-inner {
        padding-top: 8rem;
    }

    .mpt-awards-gallery {
        grid-template-columns: 1fr;
    }
}

/**
 * Source: page-tours-to-machu-picchu.php
 */
.mpt-tours-page {
    --mpt-tours-ink: #17212b;
    --mpt-tours-muted: #66727d;
    --mpt-tours-line: #dde4e9;
    --mpt-tours-soft: #f6f8f7;
    --mpt-tours-paper: #ffffff;
    --mpt-tours-green: #004f8c;
    --mpt-tours-green-dark: #003a66;
    background: var(--mpt-tours-paper);
    color: var(--mpt-tours-ink);
    overflow: hidden;
}

.mpt-tours-page a {
    color: inherit;
    text-decoration: none;
}

.mpt-tours-hero {
    min-height: clamp(540px, 70vh, 760px);
    overflow: hidden;
    position: relative;
}

.mpt-tours-hero::before {
    background: linear-gradient(90deg, rgba(9, 15, 20, .8) 0%, rgba(9, 15, 20, .46) 54%, rgba(9, 15, 20, .18) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-tours-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.04);
    width: 100%;
}

.mpt-tours-hero-inner {
    align-items: flex-end;
    display: flex;
    inset: 0;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
}

.mpt-tours-title {
    color: #fff;
    font-size: clamp(2.65rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: .98;
    margin: .75rem 0 1.1rem;
    max-width: 920px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.mpt-tours-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
    line-height: 1.8;
    margin: 0;
    max-width: 780px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .36);
}

.mpt-tours-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.mpt-tours-soft {
    background: var(--mpt-tours-soft);
    border-bottom: 1px solid var(--mpt-tours-line);
    border-top: 1px solid var(--mpt-tours-line);
}

.mpt-tours-intro {
    margin-bottom: 1rem;
}

.mpt-tours-heading {
    color: var(--mpt-tours-ink);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.mpt-tours-copy {
    color: var(--mpt-tours-muted);
    font-size: 1.03rem;
    line-height: 1.85;
    margin: 0 0 1rem;
}

.mpt-tours-image {
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 33, 43, .12);
    margin: 0;
    overflow: hidden;
}

.mpt-tours-image img {
    display: block;
    height: auto;
    width: 100%;
}

.mpt-tour-card-cell {
    align-items: stretch;
}

.mpt-tour-card-cell > * {
    width: 100%;
}

.mpt-tour-card-cell .tour-card {
    width: 100%;
}

@media (max-width: 991.98px) {
    .mpt-tours-hero {
        min-height: 600px;
    }
}

@media (max-width: 767.98px) {
    .mpt-tours-hero::before {
        background: linear-gradient(180deg, rgba(9, 15, 20, .4) 0%, rgba(9, 15, 20, .86) 100%);
    }

    .mpt-tours-hero-inner {
        padding-top: 8rem;
    }
}

/**
 * Source: page-tours-cusco-and-machu-picchu.php
 */
.mpt-cusco-page {
    --mpt-cusco-ink: #17212b;
    --mpt-cusco-muted: #66727d;
    --mpt-cusco-line: #dde4e9;
    --mpt-cusco-soft: #f6f8f7;
    --mpt-cusco-paper: #ffffff;
    --mpt-cusco-green: #004f8c;
    --mpt-cusco-green-dark: #003a66;
    background: var(--mpt-cusco-paper);
    color: var(--mpt-cusco-ink);
    overflow: hidden;
}

.mpt-cusco-page a {
    color: inherit;
    text-decoration: none;
}

.mpt-cusco-hero {
    min-height: clamp(540px, 70vh, 760px);
    overflow: hidden;
    position: relative;
}

.mpt-cusco-hero::before {
    background: linear-gradient(90deg, rgba(9, 15, 20, .8) 0%, rgba(9, 15, 20, .46) 54%, rgba(9, 15, 20, .18) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-cusco-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.04);
    width: 100%;
}

.mpt-cusco-hero-inner {
    align-items: flex-end;
    display: flex;
    inset: 0;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
}

.mpt-cusco-title {
    color: #fff;
    font-size: clamp(2.65rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: .98;
    margin: .75rem 0 1rem;
    max-width: 920px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.mpt-cusco-subtitle {
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1.15rem, 2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .36);
}

.mpt-cusco-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.mpt-cusco-soft {
    background: var(--mpt-cusco-soft);
    border-bottom: 1px solid var(--mpt-cusco-line);
    border-top: 1px solid var(--mpt-cusco-line);
}

.mpt-cusco-intro {
    margin-bottom: 1rem;
}

.mpt-cusco-copy {
    color: var(--mpt-cusco-muted);
    font-size: 1.03rem;
    line-height: 1.85;
    margin: 0 0 1rem;
}

.mpt-cusco-image {
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 33, 43, .12);
    margin: 0;
    overflow: hidden;
}

.mpt-cusco-image img {
    display: block;
    height: auto;
    width: 100%;
}

@media (max-width: 991.98px) {
    .mpt-cusco-hero {
        min-height: 600px;
    }
}

@media (max-width: 767.98px) {
    .mpt-cusco-hero::before {
        background: linear-gradient(180deg, rgba(9, 15, 20, .4) 0%, rgba(9, 15, 20, .86) 100%);
    }

    .mpt-cusco-hero-inner {
        padding-top: 8rem;
    }
}

.mpt-cusco-tailor-section {
    background: var(--mpt-cusco-soft);
    border-top: 1px solid var(--mpt-cusco-line);
}

.mpt-cusco-tailor {
    background: #fff;
    border: 1px solid var(--mpt-cusco-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 43, .06);
    margin: 0 auto;
    max-width: 980px;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.mpt-cusco-tailor h2 {
    color: var(--mpt-cusco-ink);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    margin: .25rem 0 1rem;
}

.mpt-cusco-tailor p {
    color: var(--mpt-cusco-muted);
    line-height: 1.85;
    margin: 0 0 1rem;
}

/**
 * Source: footer.php
 */
.mpt-footer {
    background: #373737;
    color: #f1f1f1;
    padding: 2.4rem 0 1.25rem;
}

.mpt-footer a {
    color: inherit;
    text-decoration: none;
}

.mpt-footer-contact-strip {
    background: #222;
    border: 1px solid rgba(255, 255, 255, .05);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 2rem;
}

.mpt-footer-contact-item {
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
}

.mpt-footer-contact-item:first-child {
    border-left: 0;
}

.mpt-footer-contact-item strong {
    color: #fff;
    display: block;
    font-size: .98rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.mpt-footer-contact-item span {
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    line-height: 1.4;
}

.mpt-footer-contact-icon {
    align-items: center;
    color: #ff3d1b;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
}

.mpt-footer-contact-icon svg {
    fill: currentColor;
    height: 1.55rem;
    width: 1.55rem;
}

.mpt-footer-main {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding: 1rem 0 2rem;
}

.mpt-footer-brand img {
    display: block;
    height: auto;
    max-width: 180px;
}

.mpt-footer-brand p {
    color: rgba(255, 255, 255, .7);
    font-size: .92rem;
    line-height: 1.7;
    margin: 1rem 0 0;
    max-width: 230px;
}

.mpt-footer-column h3,
.mpt-footer-social h3,
.mpt-footer-newsletter h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.mpt-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mpt-footer-links li {
    margin: 0 0 .55rem;
}

.mpt-footer-links a,
.mpt-footer-links span {
    color: rgba(255, 255, 255, .7);
    font-size: .92rem;
    line-height: 1.5;
}

.mpt-footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.mpt-footer-social-newsletter {
    align-items: center;
    background: #2c2c2c;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
    margin-top: .5rem;
    padding: 1.25rem 1.4rem;
}

.mpt-footer-social {
    align-items: center;
    display: flex;
    gap: 1rem 1.4rem;
    justify-content: space-between;
}

.mpt-footer-social h3 {
    margin-bottom: 0;
}

.mpt-footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.mpt-footer-social-icons a {
    align-items: center;
    background: #e33a28;
    display: inline-flex;
    height: 1.45rem;
    justify-content: center;
    width: 1.45rem;
}

.mpt-footer-social-icons svg {
    fill: #fff;
    height: .92rem;
    width: .92rem;
}

.mpt-footer-newsletter {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.mpt-footer-newsletter-form {
    display: flex;
    min-width: min(100%, 320px);
}

.mpt-footer-newsletter-form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    flex: 1 1 auto;
    font-size: .9rem;
    min-width: 0;
    outline: none;
    padding: .6rem .8rem;
}

.mpt-footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .65);
}

.mpt-footer-newsletter-form button {
    background: #e33a28;
    border: 1px solid #e33a28;
    color: #fff;
    flex: 0 0 auto;
    font-size: .82rem;
    font-weight: 900;
    padding: .6rem 1rem;
    text-transform: uppercase;
}

.mpt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 1.2rem;
    padding-top: 1rem;
    text-align: center;
}

.mpt-footer .copyright {
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .mpt-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .mpt-footer-contact-strip,
    .mpt-footer-social-newsletter {
        grid-template-columns: 1fr;
    }

    .mpt-footer-contact-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .mpt-footer-contact-item:first-child {
        border-top: 0;
    }

    .mpt-footer-social,
    .mpt-footer-newsletter {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .mpt-footer-main {
        grid-template-columns: 1fr;
    }

    .mpt-footer-contact-item {
        padding: 1rem 1.1rem;
    }
}

/**
 * Source: page-tours-in-cusco.php
 */





/* Skip link - accesible y solo visible al recibir foco */
.skip-link.screen-reader-text {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #000;
    color: #fff !important;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    z-index: 9999;
    transition: top 0.2s ease;
}



.skip-link.screen-reader-text:focus {
    top: 10px;
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
    background-color: #000;
    color: #fff;
}


/* MTH Bootstrap 5 header */
.mth-site-header {
    --mth-black: #020202;
    --mth-charcoal: #2d2d2f;
    --mth-orange: #004f8c;
    --mth-orange-bright: #004f8c;
    --mth-green: #004f8c;
    --mth-text: #303033;
    --mth-muted: #76777b;
    --mth-soft: #f7f7f5;
    --mth-line: #e8e8e4;
    --mth-shadow: 0 24px 65px rgba(15, 15, 15, 0.16);
    background: #fff;
    color: var(--mth-text);
    font-family: "Montserrat", "Aptos", "Helvetica Neue", sans-serif;
    position: relative;
    max-width: 100%;
    overflow-x: clip;
    z-index: 1050;
}

/* Page transition loader (toggle via MTH_ENABLE_PAGE_LOADER). */
html[data-mth-page-loading="1"] body {
    cursor: progress;
}

html[data-mth-page-loading="1"] body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

html[data-mth-page-loading="1"] body::after {
    content: "";
    position: fixed;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    margin-left: -28px;
    margin-top: -28px;
    z-index: 100000;
    border-radius: 999px;
    border: 4px solid rgba(112, 180, 83, 0.22);
    border-top-color: #004f8c;
    animation: mthPageLoaderSpin 0.85s linear infinite;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    background: transparent;
}

@keyframes mthPageLoaderSpin {
    to { transform: rotate(360deg); }
}

.mth-site-header a {
    text-decoration: none;
}

.mth-site-header a:focus-visible,
.mth-site-header button:focus-visible {
    box-shadow: 0 0 0 0.18rem rgba(112, 180, 83, 0.26);
    outline: 0;
}

.mth-desktop-top {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mth-desktop-shell {
    align-items: stretch;
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
    min-height: 116px;
}

.mth-desktop-brand {
    align-self: center;
}

.mth-brand {
    color: var(--mth-charcoal);
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    line-height: 1;
    position: relative;
}

.mth-brand:hover,
.mth-brand:focus {
    color: var(--mth-charcoal);
}

.mth-brand-main {
    color: var(--mth-charcoal);
    display: block;
    font-size: clamp(2.25rem, 3vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.88;
}

.mth-brand-sub {
    align-self: flex-end;
    border-top: 4px solid var(--mth-orange-bright);
    color: var(--mth-charcoal);
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-top: 0.42rem;
    padding-top: 0.18rem;
    text-transform: uppercase;
}

.mth-desktop-meta {
    align-items: flex-end;
    align-self: stretch;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
    min-width: 0;
}

.mth-desktop-utility-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    justify-content: flex-end;
    padding-top: 10px;
    width: 100%;
}

.mth-utility-links,
.mth-contact-row {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.mth-utility-links {
    color: var(--mth-muted);
    flex-wrap: wrap;
    font-size: 0.76rem;
    gap: 0.55rem;
    line-height: 1.2;
}

.mth-utility-links a {
    color: var(--mth-muted);
    transition: color 180ms ease;
}

.mth-utility-links a:hover,
.mth-utility-links a:focus {
    color: var(--mth-orange);
}

.mth-language-switcher {
    align-items: center;
    display: inline-flex;
    gap: 0.32rem;
}

.mth-language-link {
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--mth-muted);
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 850;
    gap: 0.32rem;
    letter-spacing: 0.02em;
    min-height: 28px;
    padding: 0.24rem 0.5rem;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mth-language-link:hover,
.mth-language-link:focus,
.mth-language-link.is-current {
    background: #f5f8fb;
    border-color: rgba(0, 79, 140, 0.28);
    color: var(--mth-orange);
}

.mth-language-link:hover,
.mth-language-link:focus {
    transform: translateY(-1px);
}

.mth-language-flag {
    display: inline-flex;
    height: 17px;
    overflow: hidden;
    width: 17px;
}

.mth-language-flag img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.mth-language-code {
    line-height: 1;
}

.mth-language-switcher--mobile {
    gap: 0.18rem;
}

.mth-language-switcher--mobile .mth-language-link {
    border-color: rgba(0, 79, 140, 0.18);
    min-height: 30px;
    padding: 0.22rem;
}

.mth-language-switcher--mobile .mth-language-code {
    display: none;
}

.mth-language-switcher--mobile .mth-language-flag {
    height: 19px;
    width: 19px;
}

.mth-toll-free {
    color: var(--mth-black);
    font-weight: 700;
}

.mth-toll-free strong {
    color: var(--mth-muted);
    font-weight: 500;
}

.mth-lang-link {
    font-weight: 600;
}

.mth-utility-divider {
    background: rgba(0, 0, 0, 0.68);
    display: inline-block;
    height: 13px;
    width: 1px;
}

.mth-contact-row {
    gap: 0.65rem;
}

.mth-contact-item {
    align-items: center;
    color: var(--mth-text);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 600;
    gap: 0.32rem;
    white-space: nowrap;
}

.mth-contact-item i {
    color: var(--mth-orange);
    font-size: 0.9rem;
}

.mth-contact-item:hover,
.mth-contact-item:focus {
    color: var(--mth-orange);
}

.mth-whatsapp-btn {
    align-items: center;
    border: 1px solid var(--mth-green);
    border-radius: 999px;
    color: var(--mth-green);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    gap: 0.42rem;
    padding: 0.34rem 0.68rem;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    white-space: nowrap;
}

.mth-whatsapp-btn i {
    font-size: 0.95rem;
}

.mth-whatsapp-btn:hover,
.mth-whatsapp-btn:focus {
    background: var(--mth-green);
    color: #fff;
    transform: translateY(-1px);
}

.mth-cart-link {
    color: var(--mth-orange);
    display: inline-flex;
    font-size: 1.75rem;
    position: relative;
}

.mth-cart-link:hover,
.mth-cart-link:focus {
    color: var(--mth-orange-bright);
}

.mth-cart-count {
    align-items: center;
    background: var(--mth-charcoal);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    height: 1.35rem;
    justify-content: center;
    line-height: 1;
    min-width: 1.35rem;
    position: absolute;
    right: -0.78rem;
    top: -0.62rem;
}

.mth-enquire-btn {
    background: var(--mth-orange);
    color: #fff;
    display: inline-flex;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.01em;
    padding: 0.48rem 0.82rem;
    transition: background 180ms ease, transform 180ms ease;
    white-space: nowrap;
}

.mth-enquire-btn:hover,
.mth-enquire-btn:focus {
    background: var(--mth-orange-bright);
    color: #fff;
    transform: translateY(-1px);
}

.mth-main-nav {
    background: #fff;
    border-bottom: 1px solid var(--mth-line);
    border-top: 1px solid var(--mth-line);
    position: relative;
    z-index: 30;
}

.mth-main-nav-embedded {
    align-self: flex-end;
    border-bottom: 0;
    margin-top: auto;
    position: static;
    width: 100%;
}

.mth-main-nav-embedded .mth-main-menu {
    justify-content: flex-end;
    min-height: 52px;
}

.mth-main-nav-embedded .mth-main-link {
    font-size: 0.78rem;
    padding: 0 0.72rem;
}

.mth-main-menu {
    align-items: stretch;
    display: flex;
    min-height: 75px;
}

.mth-menu-item {
    display: flex;
    position: static;
}

.mth-main-link {
    align-items: center;
    color: var(--mth-charcoal);
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 0.42rem;
    letter-spacing: 0.055em;
    padding: 0 0.9rem;
    position: relative;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease;
    white-space: nowrap;
}

.mth-main-link::after {
    background: var(--mth-orange);
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: scaleX(0.5);
    transition: opacity 180ms ease, transform 220ms ease;
    width: 100%;
}

.mth-main-link-icon {
    font-size: 0.72rem;
    transition: transform 220ms ease;
}

.mth-menu-item:hover > .mth-main-link,
.mth-menu-item:focus-within > .mth-main-link,
.mth-menu-item.current-menu-item > .mth-main-link,
.mth-menu-item.current-menu-ancestor > .mth-main-link {
    background: var(--mth-soft);
    color: var(--mth-charcoal);
}

.mth-menu-item:hover > .mth-main-link::after,
.mth-menu-item:focus-within > .mth-main-link::after,
.mth-menu-item.current-menu-item > .mth-main-link::after,
.mth-menu-item.current-menu-ancestor > .mth-main-link::after {
    opacity: 1;
    transform: scaleX(1);
}

.mth-menu-item:hover > .mth-main-link .mth-main-link-icon,
.mth-menu-item:focus-within > .mth-main-link .mth-main-link-icon {
    transform: rotate(180deg);
}

.mth-menu-empty {
    color: var(--mth-charcoal);
    font-size: 0.95rem;
    padding: 1.5rem 0;
}




.mth-mobile-bar {
    background: #fff;
    box-shadow: 0 8px 28px rgba(25, 25, 25, 0.08);
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.mth-mobile-shell {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
    min-height: 92px;
    padding: 0 0.6rem;
    width: 100%;
}

.mth-mobile-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 44vw;
}

.mth-mobile-brand img {
    display: block;
    height: auto;
    max-width: 100%;
}

.mth-mobile-brand .mth-brand-main {
    font-size: clamp(1.75rem, 7.2vw, 2.65rem);
}

.mth-mobile-brand .mth-brand-sub {
    border-top-width: 3px;
    font-size: clamp(0.52rem, 2vw, 0.7rem);
    margin-top: 0.32rem;
}

.mth-mobile-actions {
    align-items: center;
    display: flex;
    flex: 0 1 auto;
    gap: clamp(0.22rem, 1vw, 0.58rem);
    justify-content: flex-end;
    min-width: 0;
    max-width: 56vw;
}

.mth-mobile-lang {
    color: #c8c8c8;
    font-size: clamp(0.96rem, 3.6vw, 1.35rem);
    font-weight: 500;
    padding: 0 0.1rem;
}

.mth-mobile-lang:hover,
.mth-mobile-lang:focus {
    color: var(--mth-orange);
}

a.mth-brand.mth-mobile-brand img {
    width: 100%;
    height: auto;
}

.mth-mobile-divider {
    background: #e4e4e4;
    display: inline-block;
    flex: 0 0 1px;
    height: 34px;
    width: 1px;
}

.mth-mobile-icon,
.mth-mobile-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--mth-orange);
    display: inline-flex;
    font-size: clamp(1.15rem, 4.6vw, 1.62rem);
    justify-content: center;
    min-height: 38px;
    min-width: 32px;
    padding: 0;
    position: relative;
    transition: color 180ms ease, transform 180ms ease;
}

.mth-mobile-icon:hover,
.mth-mobile-icon:focus,
.mth-mobile-toggle:hover,
.mth-mobile-toggle:focus {
    color: var(--mth-orange-bright);
    transform: translateY(-1px);
}

.mth-mobile-whatsapp {
    color: #004f8c;
}

.mth-mobile-toggle {
    color: var(--mth-charcoal);
    font-size: clamp(1.55rem, 5.8vw, 2.05rem);
}

.mth-mobile-cart .mth-cart-count {
    font-size: 0.68rem;
    height: 1.18rem;
    min-width: 1.18rem;
    right: -0.5rem;
    top: -0.35rem;
}

.mth-mobile-offcanvas {
    background: #fff;
    border-right: 0;
    box-shadow: none;
    max-width: 430px;
    opacity: 0;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
    width: 80vw !important;
}

.mth-mobile-offcanvas.showing,
.mth-mobile-offcanvas.show {
    box-shadow: 24px 0 70px rgba(0, 0, 0, 0.18);
    opacity: 1;
}

.mth-mobile-offcanvas.hiding {
    opacity: 0;
}

.mth-offcanvas-header {
    align-items: center;
    border-bottom: 1px solid var(--mth-line);
    padding: 1.25rem 1.2rem;
}

.mth-offcanvas-brand .mth-brand-main {
    font-size: 2rem;
}

.mth-offcanvas-brand .mth-brand-sub {
    border-top-width: 3px;
    font-size: 0.58rem;
}

.mth-offcanvas-close {
    align-items: center;
    background: #f3f8f0;
    border: 0;
    border-radius: 999px;
    color: var(--mth-orange);
    display: inline-flex;
    font-size: 1.3rem;
    height: 44px;
    justify-content: center;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    width: 44px;
}

.mth-offcanvas-close:hover,
.mth-offcanvas-close:focus {
    background: var(--mth-orange);
    color: #fff;
    transform: rotate(90deg);
}

.mth-offcanvas-body {
    padding: 1.35rem 1.2rem 2rem;
}

.mth-mobile-menu-intro {
    margin-bottom: 1.05rem;
}

.mth-mobile-menu-kicker {
    color: var(--mth-orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
}

.mth-mobile-menu-intro h2 {
    color: var(--mth-charcoal);
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0;
}

.mth-mobile-quick-actions {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.15rem;
}

.mth-mobile-quick-actions a {
    align-items: center;
    background: var(--mth-soft);
    border: 1px solid var(--mth-line);
    border-radius: 1rem;
    color: var(--mth-charcoal);
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 0.45rem;
    justify-content: center;
    padding: 0.8rem 0.65rem;
    transition: background 180ms ease, border 180ms ease, color 180ms ease;
}

.mth-mobile-quick-actions i {
    color: var(--mth-orange);
}

.mth-mobile-quick-actions a:hover,
.mth-mobile-quick-actions a:focus {
    background: #f3f8f0;
    border-color: rgba(112, 180, 83, 0.34);
    color: var(--mth-orange);
}

.mth-mobile-accordion {
    border-top: 1px solid var(--mth-line);
}

.mth-mobile-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--mth-line);
}

.mth-mobile-accordion-button {
    background: transparent;
    box-shadow: none;
    color: var(--mth-charcoal);
    font-size: 0.94rem;
    font-weight: 800;
    gap: 0.8rem;
    letter-spacing: 0.02em;
    padding: 1.05rem 0;
    text-transform: uppercase;
}

.mth-mobile-accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: var(--mth-orange);
}

.mth-mobile-accordion-button::after {
    display: none;
}

.mth-mobile-accordion-icon {
    color: var(--mth-orange);
    font-size: 0.78rem;
    margin-left: auto;
    transition: transform 240ms ease;
}

.mth-mobile-accordion-button:not(.collapsed) .mth-mobile-accordion-icon {
    transform: rotate(180deg);
}

.mth-mobile-accordion-body {
    padding: 0 0 1rem;
}

.mth-mobile-parent-link {
    align-items: center;
    background: #f3f8f0;
    border-radius: 0.9rem;
    color: var(--mth-orange);
    display: flex;
    font-size: 0.88rem;
    font-weight: 800;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    padding: 0.82rem 0.9rem;
}

.mth-mobile-parent-link:hover,
.mth-mobile-parent-link:focus {
    background: var(--mth-orange);
    color: #fff;
}

.mth-mobile-submenu {
    margin: 0;
    padding: 0;
}

.mth-mobile-submenu-depth-2,
.mth-mobile-submenu-depth-3,
.mth-mobile-submenu-depth-4 {
    border-left: 1px solid var(--mth-line);
    margin-left: 1rem;
    padding-left: 0.5rem;
}

.mth-mobile-submenu-item + .mth-mobile-submenu-item {
    margin-top: 0.18rem;
}

.mth-mobile-submenu-link {
    align-items: center;
    border-radius: 0.78rem;
    color: #68696d;
    display: flex;
    font-size: 0.92rem;
    font-weight: 600;
    gap: 0.52rem;
    padding: 0.72rem 0.82rem;
    transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.mth-mobile-submenu-link i {
    color: var(--mth-orange);
    font-size: 0.72rem;
}

.mth-mobile-submenu-link:hover,
.mth-mobile-submenu-link:focus {
    background: var(--mth-soft);
    color: var(--mth-orange);
    padding-left: 1rem;
}

.mth-mobile-accordion-direct {
    align-items: center;
    color: var(--mth-charcoal);
    display: flex;
    font-size: 0.94rem;
    font-weight: 800;
    justify-content: space-between;
    letter-spacing: 0.02em;
    padding: 1.05rem 0;
    text-transform: uppercase;
}

.mth-mobile-accordion-direct i {
    color: var(--mth-orange);
    transition: transform 180ms ease;
}

.mth-mobile-accordion-direct:hover,
.mth-mobile-accordion-direct:focus {
    color: var(--mth-orange);
}

.mth-mobile-accordion-direct:hover i,
.mth-mobile-accordion-direct:focus i {
    transform: translateX(4px);
}

.mth-mobile-menu-empty {
    color: var(--mth-muted);
    font-size: 0.94rem;
    margin: 1rem 0 0;
}

@media (max-width: 1199.98px) {
    .mth-desktop-shell {
        gap: 1.25rem;
    }

    .mth-contact-row {
        gap: 0.85rem;
    }

    .mth-main-link {
        font-size: 0.78rem;
        padding: 0 0.62rem;
    }
}

@media (max-width: 575.98px) {
    .mth-mobile-shell {
        min-height: 86px;
        padding: 0;
    }

    .mth-mobile-brand {
        max-width: 42vw;
    }

    .mth-mobile-divider {
        height: 28px;
    }

    .mth-mobile-actions {
        gap: 0.18rem;
    }
}

@media (max-width: 410px) {
    .mth-mobile-brand {
        max-width: 39vw;
    }

    .mth-mobile-divider-menu {
        display: none;
    }

    .mth-mobile-icon,
    .mth-mobile-toggle {
        min-width: 28px;
    }
}




.megamenu_content {
    padding: 30px 10px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0px 0 12px rgba(0, 0, 0, 0.08);
}
.megamenu_content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1f2933;
}

.megamenu_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu_content ul li {
    margin-bottom: 0;
}

.megamenu_content ul li a {
    border-bottom: 1px dotted #80808066;
    position: relative;
    display: block;
    padding: 5px 5px;
    color: #374151;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.megamenu_content ul li a:hover {
    background: #f5f7f9;
    color: #0f766e;
    transform: translateX(5px);
}

.megamenu_content ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #0f766e;
    transform: translateY(-50%);
    transition: width 0.25s ease;
}

.megamenu_content ul li a:hover::before {
    width: 4px;
}

.megamenu_content .mega-description {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fafafa;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

.megamenu_content .mega-description:hover {
    background: #f5f7f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.megamenu_content .mega-description h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2933;
}

.megamenu_content .mega-description p {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}




/* =========================================
   ROOT VARIABLES
   ========================================= */
:root {
    --wsp-primary: #004f8c;
    --wsp-primary-dark: #004f8c;
    --wsp-primary-light: #004f8c;
    --wsp-dark: #1a2332;
    --wsp-text: #4a5568;
    --wsp-muted: #6b7785;
    --wsp-bg-light: #f7f8fa;
    --wsp-bg-card: #ffffff;
    --wsp-border: #e5e8ec;
    --wsp-success: #004f8c;
    --wsp-yellow: #f9aa2b;

    --wsp-font-display: "Raleway", sans-serif;
    --wsp-font-body: 'Poppins', sans-serif;
}

/* =========================================
   BASE
   ========================================= */
.wsp-body {
    font-family: var(--wsp-font-body);
    color: var(--wsp-text);
    font-size: 15px;
    line-height: 1.65;
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; }

/* =========================================
   BUTTONS
   ========================================= */
.wsp-btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    font-family: var(--wsp-font-body);
}

.wsp-btn--primary {
    background: var(--wsp-primary);
    color: #fff;
    border-color: var(--wsp-primary);
}
.wsp-btn--primary:hover {
    background: var(--wsp-primary-dark);
    border-color: var(--wsp-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(112, 180, 83, 0.35);
}

.wsp-btn--outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.wsp-btn--outline:hover {
    background: #fff;
    color: var(--wsp-dark);
}

.wsp-btn--outline-sm {
    background: transparent;
    color: var(--wsp-primary);
    border: 2px solid var(--wsp-primary);
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 3px;
}
.wsp-btn--outline-sm:hover {
    background: var(--wsp-primary);
    color: #fff;
}

.wsp-btn--lg { padding: 15px 38px; font-size: 15px; }
.wsp-btn--sm { padding: 8px 18px; font-size: 12px; }

/* =========================================
   SECTION TITLES (shared)
   ========================================= */
.wsp-section-title {
    text-align: center;
    font-family: var(--wsp-font-display);
    font-weight: 700;
    color: var(--wsp-dark);
    font-size: 32px;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.wsp-section-subtitle {
    text-align: center;
    color: var(--wsp-primary);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
}

.wsp-section-text {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 40px;
    color: var(--wsp-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================
   SINGLE POST (BLOG)
   ========================================= */
.wsp-post-hero {
    position: relative;
    padding: 84px 0 64px;
    color: #fff;
    background: url('https://picsum.photos/seed/arequipabloghero/1920/900') center/cover no-repeat;
}
.wsp-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.80));
}
.wsp-post-hero__content { position: relative; z-index: 2; max-width: 980px; text-align: left; }
.wsp-post-breadcrumbs { color: rgba(255,255,255,0.75); font-size: 12px; margin-bottom: 14px; }
.wsp-post-breadcrumbs a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; }
.wsp-post-breadcrumbs a:hover { text-decoration: underline; }
.wsp-post-hero__kicker {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    color: rgba(255,255,255,0.86);
    margin: 0 0 12px;
}
.wsp-post-hero__title {
    font-family: var(--wsp-font-display);
    font-weight: 900;
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.wsp-post-hero__meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin-bottom: 18px;
}
.wsp-post-hero__meta i { color: rgba(255,255,255,0.9); }
.wsp-post-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.wsp-post-top { margin-top: -34px; }
.wsp-post-cover {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--wsp-border);
    box-shadow: 0 18px 44px rgba(0,0,0,0.12);
    background: #fff;
}
.wsp-post-cover img { width: 100%; height: 440px; object-fit: cover; display: block; }

.wsp-post-body { padding: 42px 0 70px; }
.wsp-post-grid { display: grid; grid-template-columns: 340px 1fr; gap: 18px; align-items: start; }
.wsp-post-aside { position: sticky; top: 20px; display: grid; gap: 14px; }
.wsp-post-card {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}
.wsp-post-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--wsp-font-display);
    font-weight: 900;
    color: var(--wsp-dark);
    font-size: 16px;
    margin-bottom: 10px;
}
.wsp-post-card__title i { color: var(--wsp-primary); }

.wsp-post-toc__nav { display: grid; gap: 8px; }
.wsp-post-toc__link {
    display: block;
    text-decoration: none;
    color: var(--wsp-dark);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid var(--wsp-border);
    background: linear-gradient(180deg, #fff, rgba(112, 180, 83, 0.02));
}
.wsp-post-toc__link--h3 { padding-left: 18px; font-weight: 700; font-size: 12.5px; }
.wsp-post-toc__link:hover { border-color: rgba(112, 180, 83, 0.25); }

.wsp-post-share__grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.wsp-post-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: 1px solid var(--wsp-border);
    background: #fff;
    color: var(--wsp-dark);
    font-weight: 900;
    font-size: 13px;
    border-radius: 12px;
    padding: 10px 12px;
    text-decoration: none;
}
.wsp-post-share__btn:hover { border-color: rgba(112, 180, 83, 0.25); }
.wsp-post-share__btn i { color: var(--wsp-primary); }
.wsp-post-share__btn--copy { cursor: pointer; }
.wsp-post-share__note { margin-top: 10px; font-size: 12px; color: var(--wsp-muted); }

.wsp-post-prose h2, .wsp-post-prose h3 {
    font-family: var(--wsp-font-display);
    font-weight: 900;
    color: var(--wsp-dark);
    margin: 22px 0 10px;
}
.wsp-post-prose h2 { font-size: 24px; }
.wsp-post-prose h3 { font-size: 18px;  font-weight: 800; }
.wsp-post-prose p, .wsp-post-prose li {
    color: var(--wsp-muted);
    font-size: 14px;
    line-height: 1.9;
}
.wsp-post-prose a { color: var(--wsp-primary); font-weight: 800; }
.wsp-post-prose blockquote {
    border-left: 4px solid rgba(112, 180, 83, 0.35);
    padding-left: 14px;
    color: var(--wsp-muted);
}
.wsp-post-tags { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.wsp-post-tags__label { font-weight: 900; color: var(--wsp-dark); font-size: 13px; }
.wsp-post-tags__items a {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    color: var(--wsp-dark);
    font-weight: 800;
    font-size: 12px;
    background: rgba(112, 180, 83, 0.08);
    border: 1px solid rgba(112, 180, 83, 0.18);
    padding: 7px 10px;
    border-radius: 999px;
}
.wsp-post-nextprev { margin-top: 18px; display: flex; gap: 12px; justify-content: space-between; }
.wsp-post-nextprev__item a {
    text-decoration: none;
    color: var(--wsp-dark);
    font-weight: 900;
    font-size: 13px;
    border: 1px solid var(--wsp-border);
    border-radius: 12px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}
.wsp-post-nextprev__item a:hover { border-color: rgba(112, 180, 83, 0.25); }
.wsp-post-nextprev__item--right { margin-left: auto; }

.wsp-post-related { padding: 70px 0; background: var(--wsp-bg-light); border-top: 1px solid var(--wsp-border); }
.wsp-related__slider { position: relative; }
.wsp-swiper-related-posts { padding-bottom: 46px; }
.wsp-related-card {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0,0,0,0.08);
    height: 100%;
}
.wsp-related-card__img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.wsp-related-card__body { padding: 16px 16px 18px; }
.wsp-related-card__meta { color: var(--wsp-muted); font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.wsp-related-card__meta i { color: var(--wsp-primary); }
.wsp-related-card__title { font-family: var(--wsp-font-display); font-weight: 900; font-size: 16px; margin-bottom: 8px; line-height: 1.25; }
.wsp-related-card__title a { color: var(--wsp-dark); text-decoration: none; }
.wsp-related-card__title a:hover { text-decoration: underline; }
.wsp-related-card__excerpt { color: var(--wsp-muted); font-size: 13px; line-height: 1.75; margin: 0 0 10px; }
.wsp-related-card__link { color: var(--wsp-primary); font-weight: 900; text-decoration: none; }
.wsp-related-card__link:hover { text-decoration: underline; }

@media (max-width: 991px) {
    .wsp-post-hero__title { font-size: 34px; }
    .wsp-post-cover img { height: 340px; }
    .wsp-post-grid { grid-template-columns: 1fr; }
    .wsp-post-aside { position: relative; top: auto; }
}
@media (max-width: 575px) {
    .wsp-post-cover img { height: 280px; }
    .wsp-post-hero { padding: 70px 0 56px; }
}

/* =========================================
   TAXONOMY: tours-type
   ========================================= */
.wsp-tax-hero {
    position: relative;
    padding: 84px 0 64px;
    color: #fff;
    background: center/cover no-repeat;
}
.wsp-tax-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.80));
}
.wsp-tax-hero__content { position: relative; z-index: 2; max-width: 980px; text-align: left; }
.wsp-tax-breadcrumbs { color: rgba(255,255,255,0.75); font-size: 12px; margin-bottom: 14px; }
.wsp-tax-breadcrumbs a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; }
.wsp-tax-breadcrumbs a:hover { text-decoration: underline; }
.wsp-tax-hero__kicker {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    color: rgba(255,255,255,0.86);
    margin: 0 0 12px;
}
.wsp-tax-hero__title {
    font-family: var(--wsp-font-display);
    font-weight: 900;
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.wsp-tax-hero__subtitle {
    color: rgba(255,255,255,0.90);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
    max-width: 860px;
}
.wsp-tax-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.wsp-tax-list { padding: 70px 0; }
.wsp-tax-list__bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.wsp-tax-list__count span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--wsp-border);
    background: #fff;
    color: var(--wsp-dark);
    font-weight: 900;
    font-size: 13px;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.wsp-tour-card {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.wsp-tour-card:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0,0,0,0.10); }
.wsp-tour-card__img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.wsp-tour-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.wsp-tour-card__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 800;
    color: var(--wsp-muted);
    margin-bottom: 8px;
}
.wsp-tour-card__meta i { color: var(--wsp-primary); }
.wsp-tour-card__title {
    font-family: var(--wsp-font-display);
    font-weight: 900;
    color: var(--wsp-dark);
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
}
.wsp-tour-card__title a { color: inherit; text-decoration: none; }
.wsp-tour-card__title a:hover { text-decoration: underline; }
.wsp-tour-card__text { color: var(--wsp-muted); font-size: 13px; line-height: 1.75; margin: 0 0 12px; }
.wsp-tour-card__footer { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

.wsp-tax-pagination { margin-top: 26px; }
.wsp-tax-pagination .page-numbers {
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-left: 0;
    margin: 0;
    flex-wrap: wrap;
}
.wsp-tax-pagination .page-numbers li a,
.wsp-tax-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--wsp-border);
    border-radius: 12px;
    background: #fff;
    color: var(--wsp-dark);
    text-decoration: none;
    font-weight: 900;
}
.wsp-tax-pagination .page-numbers li span.current {
    background: var(--wsp-primary);
    color: #fff;
    border-color: var(--wsp-primary);
}
.wsp-tax-empty {
    background: #fff;
    border: 1px dashed rgba(112, 180, 83, 0.35);
    border-radius: 18px;
    padding: 26px 18px;
    text-align: center;
    color: var(--wsp-muted);
}
.wsp-tax-empty h3 { color: var(--wsp-dark); font-weight: 900; }
.wsp-tax-empty__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }

@media (max-width: 991px) {
    .wsp-tax-hero__title { font-size: 34px; }
}
@media (max-width: 575px) {
    .wsp-tax-hero { padding: 70px 0 56px; }
    .wsp-tour-card__img img { height: 200px; }
}

/* =========================================
   HERO
   ========================================= */
.wsp-hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.wsp-hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.wsp-hero-swiper .swiper-slide,
.wsp-hero-swiper img {
    width: 100%;
    height: 100%;
}
.wsp-hero-swiper img {
    display: block;
    object-fit: cover;
}
.wsp-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.wsp-hero .wsp-swiper-btn {
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}
.wsp-hero .swiper-pagination {
    z-index: 3;
}
.wsp-hero .wsp-hero-swiper__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
}
.wsp-hero .wsp-hero-swiper__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.6);
    opacity: 1;
}
.wsp-hero .wsp-hero-swiper__pagination .swiper-pagination-bullet-active {
    background: #fff;
}
.wsp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
    z-index: 1;
}
.wsp-hero__content {
    position: relative;
    z-index: 2;
}
.wsp-hero__title {
    font-family: var(--wsp-font-display);
    font-weight: 700;
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.wsp-hero__subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 35px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.wsp-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   INNER PAGE HERO (shared)
   ========================================= */
.wsp-hero--inner {
    height: 520px;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.wsp-about-kicker {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 12px;
}

.wsp-section-title--left,
.wsp-section-subtitle.wsp-section-subtitle--left,
.wsp-section-text.wsp-section-text--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.wsp-about-stats {
    background: var(--wsp-bg-light);
    padding: 22px 0;
    border-bottom: 1px solid var(--wsp-border);
}
.wsp-about-stat {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 14px;
    padding: 18px 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
    height: 100%;
}
.wsp-about-stat__num {
    color: var(--wsp-primary);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 4px;
}
.wsp-about-stat__label {
    font-size: 12px;
    color: var(--wsp-muted);
}

.wsp-about-split {
    padding: 70px 0 55px;
}
.wsp-about-lead {
    color: var(--wsp-muted);
    font-size: 14px;
    line-height: 1.85;
    margin: 0 0 18px;
}
.wsp-about-checks {
    display: grid;
    gap: 10px;
}
.wsp-about-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--wsp-dark);
    font-weight: 600;
    font-size: 13px;
}
.wsp-about-check i {
    color: var(--wsp-primary);
    margin-top: 2px;
}
.wsp-about-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--wsp-border);
    box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}
.wsp-about-media__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.wsp-about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.28));
    pointer-events: none;
}
.wsp-about-media__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 14px;
    padding: 12px 14px;
    max-width: 320px;
    text-align: left;
}
.wsp-about-media__badge-title {
    font-weight: 800;
    color: var(--wsp-dark);
    font-size: 13px;
    margin-bottom: 2px;
}
.wsp-about-media__badge-text {
    color: var(--wsp-muted);
    font-size: 12px;
    line-height: 1.5;
}

.wsp-about-panels {
    padding: 10px 0 70px;
}
.wsp-about {
    padding: 70px 0 50px;
}
.wsp-about__panel {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 14px;
    padding: 26px 26px;
    height: 100%;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}
.wsp-about__panel--highlight {
    background: linear-gradient(180deg, #fff, rgba(112, 180, 83, 0.04));
    border-color: rgba(112, 180, 83, 0.18);
}
.wsp-about__title {
    font-family: var(--wsp-font-display);
    font-weight: 700;
    color: var(--wsp-dark);
    font-size: 22px;
    margin-bottom: 10px;
}
.wsp-about__panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.wsp-about__panel-thumb {
    width: 74px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--wsp-border);
}
.wsp-about__text {
    color: var(--wsp-muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}
.wsp-about__pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.wsp-about__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--wsp-dark);
    background: rgba(112, 180, 83, 0.08);
    border: 1px solid rgba(112, 180, 83, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
}
.wsp-about-offer {
    padding: 60px 0 70px;
    background: var(--wsp-bg-light);
    border-top: 1px solid var(--wsp-border);
    border-bottom: 1px solid var(--wsp-border);
}
.wsp-about-card {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 14px;
    padding: 26px 22px;
    height: 100%;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.wsp-about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.wsp-about-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--wsp-primary);
    margin-bottom: 14px;
    font-size: 18px;
}
.wsp-about-card__title {
    font-family: var(--wsp-font-display);
    font-weight: 700;
    color: var(--wsp-dark);
    font-size: 18px;
    margin-bottom: 8px;
}
.wsp-about-card__text {
    color: var(--wsp-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}
.wsp-about-cta {
    position: relative;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    background: url('https://picsum.photos/seed/arequipacta/1920/900') center/cover no-repeat;
}
.wsp-about-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.62));
}
.wsp-about-cta__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
}
.wsp-about-cta__pretitle {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}
.wsp-about-cta__title {
    font-family: var(--wsp-font-display);
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.wsp-about-cta__text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 26px;
    max-width: 860px;
}
.wsp-about-cta__note {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

/* =========================================
   ABOUT GALLERY
   ========================================= */
.wsp-about-gallery {
    padding: 70px 0;
}
.wsp-about-gallery__item {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--wsp-border);
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    transform: translateZ(0);
}
.wsp-about-gallery__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, filter .25s ease;
    filter: saturate(1.05);
}
.wsp-about-gallery__item:hover img {
    transform: scale(1.03);
    filter: saturate(1.15);
}

@media (max-width: 991px) {
    .wsp-hero--inner { height: 440px; }
    .wsp-about-media__img { height: 360px; }
    .wsp-about-cta__title { font-size: 28px; }
}
@media (max-width: 575px) {
    .wsp-hero--inner { height: 420px; }
    .wsp-about-media__img { height: 320px; }
    .wsp-about-media__badge { max-width: calc(100% - 32px); }
}

/* =========================================
   ESNNA POLICIES (LANDING)
   ========================================= */
.wsp-policy-hero .wsp-hero__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7));
}
.wsp-policy-kicker {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: rgba(255,255,255,0.86);
    margin: 0 0 12px;
}
.wsp-policy-trust {
    background: var(--wsp-bg-light);
    padding: 26px 0;
    border-bottom: 1px solid var(--wsp-border);
}
.wsp-policy-trust__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--wsp-dark);
    background: rgba(112, 180, 83, 0.08);
    border: 1px solid rgba(112, 180, 83, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    margin-bottom: 10px;
}
.wsp-policy-trust__text {
    color: var(--wsp-muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}
.wsp-policy-trust__media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--wsp-border);
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}
.wsp-policy-trust__media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.wsp-policy-commitment {
    padding: 70px 0 55px;
}
.wsp-policy-card {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 14px;
    padding: 26px 22px;
    height: 100%;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: center;
}
.wsp-policy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.wsp-policy-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--wsp-primary);
    margin-bottom: 14px;
    font-size: 18px;
}
.wsp-policy-card__title {
    font-family: var(--wsp-font-display);
    font-weight: 800;
    color: var(--wsp-dark);
    font-size: 18px;
    margin-bottom: 8px;
}
.wsp-policy-card__text {
    color: var(--wsp-muted);
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}

.wsp-policy-prevention {
    padding: 70px 0;
    background: var(--wsp-bg-light);
    border-top: 1px solid var(--wsp-border);
}
.wsp-policy-prevention__media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--wsp-border);
    box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}
.wsp-policy-prevention__media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.wsp-policy-steps {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 22px;
}
.wsp-policy-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 14px;
    padding: 14px 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.wsp-policy-step__num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(112, 180, 83, 0.10);
    border: 1px solid rgba(112, 180, 83, 0.18);
    color: var(--wsp-primary);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.wsp-policy-step__title {
    font-weight: 800;
    color: var(--wsp-dark);
    font-size: 13px;
    margin-bottom: 2px;
}
.wsp-policy-step__text {
    color: var(--wsp-muted);
    font-size: 13px;
    line-height: 1.7;
}

.wsp-policy-callout {
    background: linear-gradient(180deg, #fff, rgba(112, 180, 83, 0.03));
    border: 1px solid rgba(112, 180, 83, 0.18);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}
.wsp-policy-callout__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--wsp-font-display);
    font-weight: 900;
    color: var(--wsp-dark);
    font-size: 18px;
    margin-bottom: 8px;
}
.wsp-policy-callout__title i { color: var(--wsp-primary); }
.wsp-policy-callout__text {
    color: var(--wsp-muted);
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 14px;
}
.wsp-policy-hotline {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 14px;
    padding: 14px 14px;
    height: 100%;
}
.wsp-policy-hotline__name {
    font-weight: 900;
    color: var(--wsp-dark);
    font-size: 13px;
    margin-bottom: 4px;
}
.wsp-policy-hotline__value {
    color: var(--wsp-primary);
    font-weight: 900;
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 4px;
}
.wsp-policy-hotline__meta {
    color: var(--wsp-muted);
    font-size: 12px;
}
.wsp-policy-callout__cta {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 16px;
}

@media (max-width: 991px) {
    .wsp-policy-prevention__media img { height: 420px; }
    .wsp-policy-callout__cta { justify-content: center; }
}
@media (max-width: 575px) {
    .wsp-policy-trust__media img { height: 160px; }
    .wsp-policy-prevention__media img { height: 340px; }
}

/* =========================================
   OUR AWARDS (LANDING)
   ========================================= */
.wsp-awards-hero .wsp-hero__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.70));
}
.wsp-awards-kicker {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: rgba(255,255,255,0.86);
    margin: 0 0 12px;
}
.wsp-awards-trust {
    background: var(--wsp-bg-light);
    padding: 30px 0 10px;
    border-bottom: 1px solid var(--wsp-border);
}
.wsp-awards-trust__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    color: var(--wsp-dark);
    background: rgba(112, 180, 83, 0.08);
    border: 1px solid rgba(112, 180, 83, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    margin-bottom: 10px;
}
.wsp-awards-trust__text {
    color: var(--wsp-muted);
    font-size: 13px;
    line-height: 1.85;
    margin: 0;
}
.wsp-awards-trust__media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--wsp-border);
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}
.wsp-awards-trust__media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.wsp-awards-logos {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 18px;
    padding: 18px 0 20px;
}
.wsp-awards-logos__item {
    flex: 1 1 160px;
    display: flex;
    justify-content: center;
}
.wsp-awards-logos__item img {
    width: 150px;
    height: 56px;
    object-fit: contain;
    filter: grayscale(35%);
    opacity: 0.92;
    transition: filter .25s ease, opacity .25s ease;
}
.wsp-awards-logos__item img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.wsp-awards-pillars {
    padding: 70px 0 55px;
}
.wsp-awards-card {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 14px;
    padding: 26px 22px;
    height: 100%;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.wsp-awards-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.wsp-awards-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--wsp-primary);
    margin-bottom: 14px;
    font-size: 18px;
}
.wsp-awards-card__title {
    font-family: var(--wsp-font-display);
    font-weight: 900;
    color: var(--wsp-dark);
    font-size: 18px;
    margin-bottom: 8px;
}
.wsp-awards-card__text {
    color: var(--wsp-muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 14px;
}
.wsp-awards-card__thumbs {
    display: flex;
    gap: 10px;
}
.wsp-awards-card__thumbs img {
    width: 100%;
    max-width: 160px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--wsp-border);
}

.wsp-awards-timeline {
    padding: 70px 0;
    background: var(--wsp-bg-light);
    border-top: 1px solid var(--wsp-border);
    border-bottom: 1px solid var(--wsp-border);
}
.wsp-awards-lead {
    color: var(--wsp-muted);
    font-size: 14px;
    line-height: 1.85;
    margin: 0 0 18px;
}
.wsp-awards-mini {
    display: grid;
    gap: 10px;
}
.wsp-awards-mini__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--wsp-dark);
    font-weight: 700;
    font-size: 13px;
}
.wsp-awards-mini__item i {
    color: var(--wsp-primary);
    margin-top: 2px;
}
.wsp-awards-rail {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 18px;
    padding: 16px 16px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}
.wsp-awards-rail__item {
    position: relative;
    padding: 14px 14px 14px 52px;
    border-radius: 14px;
    border: 1px solid var(--wsp-border);
    margin-bottom: 12px;
    background: linear-gradient(180deg, #fff, rgba(112, 180, 83, 0.02));
}
.wsp-awards-rail__item:last-child { margin-bottom: 0; }
.wsp-awards-rail__year {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(112, 180, 83, 0.10);
    border: 1px solid rgba(112, 180, 83, 0.18);
    color: var(--wsp-primary);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.wsp-awards-rail__title {
    font-weight: 900;
    color: var(--wsp-dark);
    font-size: 13px;
    margin-bottom: 2px;
}
.wsp-awards-rail__text {
    color: var(--wsp-muted);
    font-size: 13px;
    line-height: 1.7;
}
.wsp-awards-rail-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--wsp-muted);
}

.wsp-awards-cta {
    position: relative;
    padding: 85px 0;
    color: #fff;
    text-align: center;
    background: center/cover no-repeat;
}
.wsp-awards-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.68));
}
.wsp-awards-cta__content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}
.wsp-awards-cta__pretitle {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}
.wsp-awards-cta__title {
    font-family: var(--wsp-font-display);
    font-weight: 900;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.wsp-awards-cta__text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.90);
    margin: 0 auto 26px;
    max-width: 860px;
}

@media (max-width: 991px) {
    .wsp-awards-trust__media img { height: 190px; }
    .wsp-awards-cta__title { font-size: 28px; }
}
@media (max-width: 575px) {
    .wsp-awards-card__thumbs img { height: 86px; }
}


a.mth-brand.mth-desktop-brand img {
    width: 100%;
    height: 60px;
}



/* =========================================
   STATS BAR
   ========================================= */
.wsp-stats {
    background: var(--wsp-bg-light);
    padding: 28px 0;
    border-bottom: 1px solid var(--wsp-border);
}
.wsp-stats__number {
    color: var(--wsp-primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.wsp-stats__label {
    font-size: 12px;
    color: var(--wsp-muted);
    margin-top: 4px;
}
.wsp-stats__logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}
.wsp-stats__logos img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter 0.25s;
}
.wsp-stats__logos img:hover { filter: grayscale(0); }

/* =========================================
   INTRO
   ========================================= */
.wsp-intro {
    padding: 60px 0 50px;
    text-align: center;
}
.wsp-intro__title {
    font-family: var(--wsp-font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--wsp-dark);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.wsp-intro__subtitle {
    font-weight: 500;
    font-size: 17px;
    color: var(--wsp-dark);
    letter-spacing: 0.4px;
    margin-bottom: 22px;
}
.wsp-intro__banner {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-bottom: 2px solid var(--wsp-primary);
    padding: 10px 24px;
    margin-bottom: 28px;
}
.wsp-intro__banner img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}
.wsp-intro__banner span {
    font-weight: 600;
    color: var(--wsp-primary);
    letter-spacing: 0.5px;
}
.wsp-intro__text {
    max-width: 970px;
    margin: 0 auto 28px;
    font-size: 14px;
    color: var(--wsp-muted);
    line-height: 1.85;
}

.wsp-awards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.wsp-awards__medal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: 2px solid #efe2c2;
}
.wsp-awards__tripadvisor {
    text-align: center;
    font-size: 11px;
    color: var(--wsp-muted);
    border: 2px solid #004f8c;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px;
}
.wsp-awards__year {
    font-weight: 700;
    color: var(--wsp-dark);
    font-size: 12px;
}
.wsp-awards__choice {
    font-weight: 700;
    color: var(--wsp-dark);
    font-size: 11px;
    line-height: 1.1;
}
.wsp-awards__owl { color: #004f8c; font-size: 18px; margin: 3px 0; }
.wsp-awards__brand { font-size: 9px; color: var(--wsp-muted); }

/* =========================================
   BEST MACHU PICCHU TREKS
   ========================================= */
.wsp-treks {
    padding: 60px 0;
    background: #fff;
}
.wsp-treks__slider {
    position: relative;
    padding: 0 60px;
}
.wsp-swiper-treks { padding-bottom: 50px; }
.wsp-swiper-classic-tours { padding-bottom: 50px; }

.wsp-trek-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}
.wsp-trek-card__img {
    position: relative;
    flex: 0 0 45%;
    overflow: hidden;
}
.wsp-trek-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.wsp-trek-card__img a:hover img { transform: scale(1.06); }

.wsp-trek-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--wsp-primary);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.wsp-trek-card__body {
    flex: 1;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
}
.wsp-trek-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--wsp-dark);
    margin-bottom: 12px;
}
.wsp-trek-card__desc {
    font-size: 13px;
    color: var(--wsp-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.wsp-trek-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: var(--wsp-text);
    margin-bottom: 16px;
}
.wsp-trek-card__meta-item i { color: var(--wsp-primary); margin-right: 4px; }

.wsp-trek-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid var(--wsp-border);
    padding-top: 14px;
    gap: 12px;
    flex-wrap: wrap;
}
.wsp-trek-card__from {
    display: block;
    font-size: 11px;
    color: var(--wsp-muted);
    text-transform: uppercase;
}
.wsp-trek-card__amount {
    display: block;
    color: var(--wsp-primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}
.wsp-trek-card__person {
    display: block;
    font-size: 11px;
    color: var(--wsp-muted);
}

.wsp-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--wsp-border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--wsp-primary);
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s;
    z-index: 10;
}
.wsp-swiper-btn:hover {
    background: var(--wsp-primary);
    color: #fff;
}
.wsp-swiper-btn--prev { left: 5px; }
.wsp-swiper-btn--next { right: 5px; }

.wsp-swiper-treks .swiper-pagination-bullet-active {
    background: var(--wsp-primary);
}

/* =========================================
   READY TO TRAVEL
   ========================================= */
.wsp-ready {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 90px 0;
    color: #fff;
}
.wsp-ready__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,25,40,0.85) 0%, rgba(15,25,40,0.65) 100%);
}
.wsp-ready .container { position: relative; z-index: 2; }
.wsp-ready__pretitle {
    color: var(--wsp-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 12px;
}
.wsp-ready__title {
    font-family: var(--wsp-font-display);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.wsp-ready-card {
    text-align: center;
    padding: 18px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    transition: all 0.3s;
}
.wsp-ready-card:hover {
    background: rgba(112, 180, 83, 0.12);
    border-color: var(--wsp-primary);
    transform: translateY(-4px);
}
.wsp-ready-card__icon {
    font-size: 34px;
    color: var(--wsp-primary);
    margin-bottom: 12px;
}
.wsp-ready-card__title {
    font-family: var(--wsp-font-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.wsp-ready-card__text {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    margin: 0;
}

/* =========================================
   CUSTOMIZED PERU EXPERTS
   ========================================= */
.wsp-experts { padding: 70px 0; background: #fff; }
.wsp-experts__title {
    font-family: var(--wsp-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--wsp-dark);
    margin-bottom: 18px;
}
.wsp-experts__text {
    color: var(--wsp-muted);
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.8;
}
.wsp-experts__feature {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}
.wsp-experts__feature-icon {
    font-size: 22px;
    color: var(--wsp-primary);
    background: rgba(112, 180, 83, 0.1);
    width: 46px;
    height: 46px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wsp-experts__feature-title {
    font-family: var(--wsp-font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--wsp-dark);
    margin-bottom: 3px;
}
.wsp-experts__feature-text {
    font-size: 13px;
    color: var(--wsp-muted);
    margin: 0;
}
.wsp-experts__img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
    object-fit: cover;
}

/* =========================================
   MOST POPULAR TOURS
   ========================================= */
.wsp-popular { padding: 70px 0; background: var(--wsp-bg-light); }

.wsp-tour-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.07);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.wsp-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
.wsp-tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.wsp-tour-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--wsp-primary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.wsp-tour-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.wsp-tour-card__title {
    font-family: var(--wsp-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--wsp-dark);
    margin-bottom: 4px;
}
.wsp-tour-card__title span {
    display: block;
    font-family: var(--wsp-font-body);
    font-size: 12px;
    color: var(--wsp-primary);
    font-weight: 600;
    margin-top: 2px;
}
.wsp-tour-card__text {
    font-size: 13px;
    color: var(--wsp-muted);
    line-height: 1.6;
    margin: 10px 0;
}
.wsp-tour-card__meta {
    font-size: 12px;
    color: var(--wsp-text);
}
.wsp-tour-card__meta div { margin-bottom: 4px; }
.wsp-tour-card__meta i { color: var(--wsp-primary); margin-right: 4px; width: 16px; }

.wsp-tour-card__footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--wsp-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wsp-tour-card__from {
    display: block;
    font-size: 11px;
    color: var(--wsp-muted);
    text-transform: uppercase;
}
.wsp-tour-card__price {
    display: block;
    color: var(--wsp-primary);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
}

/* =========================================
   CERTIFIED EXCELLENCE
   ========================================= */
.wsp-certified { padding: 60px 0; background: #fff; }
.wsp-certified__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.wsp-certified__logos img {
    max-width: 110px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.7);
    transition: filter 0.25s;
}
.wsp-certified__logos img:hover { filter: grayscale(0) opacity(1); }

/* =========================================
   TRENDING ADVENTURES
   ========================================= */
.wsp-trending { padding: 70px 0; background: var(--wsp-bg-light); }

.wsp-trend-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}
.wsp-trend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.wsp-trend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.wsp-trend-card:hover img { transform: scale(1.08); }
.wsp-trend-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.96);
    color: var(--wsp-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 2;
}
.wsp-trend-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
    gap: 4px;
    transform: translateY(14px);
    transition: transform 0.9s;
}
.wsp-trend-card:hover .wsp-trend-card__overlay,
.wsp-trend-card:focus-within .wsp-trend-card__overlay {
    transform: translateY(0);
}
.wsp-trend-card__meta {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}
.wsp-trend-card__title {
    font-family: var(--wsp-font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.wsp-trend-card__divider {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.22);
    margin: 6px 0 4px;
}
.wsp-trend-card__price {
    font-size: 13px;
    margin: 0;
    opacity: 0.92;
}
.wsp-trend-card__reveal {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}
.wsp-trend-card__desc {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.88;
    margin-bottom: 10px;
}
.wsp-trend-card:hover .wsp-trend-card__reveal {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .wsp-trend-card,
    .wsp-trend-card img,
    .wsp-trend-card__reveal {
        transition: none !important;
    }
    .wsp-trend-card:hover { transform: none; }
}

/* =========================================
   TRAVEL THAT GIVES BACK
   ========================================= */
.wsp-gives { padding: 70px 0; background: #fff; }

.wsp-gives-card {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.wsp-gives-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.wsp-gives-card:hover img { transform: scale(1.05); }
.wsp-gives-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 22px;
    gap: 10px;
}
.wsp-gives-card__icon {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: rgba(0,0,0,0.15);
}
.wsp-gives-card__title {
    font-family: var(--wsp-font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin: 0;
    text-transform: uppercase;
}
.wsp-gives-card__text {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.35;
    max-width: 42ch;
}

@media (max-width: 991.98px) {
    .wsp-gives-card { height: 230px; }
}

/* =========================================
   FAQ
   ========================================= */
.wsp-faq { padding: 70px 0; background: var(--wsp-bg-light); }

.wsp-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--wsp-border);
    background: transparent;
    border-radius: 0;
}
.wsp-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    color: var(--wsp-dark);
    padding: 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: none;
}
.wsp-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--wsp-primary);
    box-shadow: none;
}
.wsp-accordion .accordion-button::after {
    background: none;
    content: "+";
    font-size: 22px;
    font-weight: 300;
    width: auto;
    height: auto;
    transform: none;
    color: var(--wsp-primary);
}
.wsp-accordion .accordion-button:not(.collapsed)::after {
    content: '-';
    transform: none;
}
.wsp-accordion .accordion-body {
    padding: 0 0 16px 0;
    font-size: 13px;
    color: var(--wsp-muted);
    line-height: 1.7;
}


a.mth-brand.mth-offcanvas-brand img {
    width: 60%;
    height: 60px;
}


/* =========================================
   TRUST BADGES
   ========================================= */
.wsp-trust {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid var(--wsp-border);
    border-bottom: 1px solid var(--wsp-border);
}
.wsp-trust__icon {
    font-size: 30px;
    color: var(--wsp-primary);
    margin-bottom: 10px;
}
.wsp-trust__title {
    font-family: var(--wsp-font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--wsp-dark);
    margin-bottom: 8px;
}
.wsp-trust__text {
    font-size: 12px;
    color: var(--wsp-muted);
    line-height: 1.55;
    margin: 0;
}

/* =========================================
   TOURS AUTÉNTICOS
   ========================================= */
.wsp-auth-tours { padding: 70px 0 80px; background: var(--wsp-bg-light); }

.wsp-auth-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 520px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.wsp-auth-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
}
.wsp-auth-card:hover img { transform: scale(1.06); }
.wsp-auth-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 26px 60px rgba(0,0,0,0.28);
}

.wsp-auth-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.85) 100%);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    gap: 6px;
}
.wsp-auth-card__title {
    font-family: var(--wsp-font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
}
.wsp-auth-card__desc {
    font-size: 14px;
    opacity: 0.92;
    margin: 0;
}
.wsp-auth-card__divider {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.22);
    margin: 10px 0 6px;
}
.wsp-auth-card__route {
    font-size: 13px;
    opacity: 0.92;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.wsp-auth-card__route i {
    margin-top: 2px;
    color: rgba(255,255,255,0.9);
}
.wsp-auth-card__meta {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.wsp-auth-card__meta strong { font-weight: 800; }
.wsp-auth-card__meta-sep { opacity: 0.7; }
.wsp-auth-card__currency { opacity: 0.92; }
.wsp-auth-card__amount {
    font-weight: 900;
    color: var(--wsp-primary-light);
    font-size: 26px;
    letter-spacing: 0.3px;
}

.wsp-auth-card .wsp-btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 991.98px) {
    .wsp-auth-card { height: 420px; }
    .wsp-auth-card__title { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .wsp-auth-card,
    .wsp-auth-card img {
        transition: none !important;
    }
    .wsp-auth-card:hover { transform: none; }
}

/* =========================================
   FOOTER
   ========================================= */
.wsp-footer {
    background: #0f172a;
    color: rgba(255,255,255,0.88);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.wsp-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 0;
}
.wsp-footer > * {
    position: relative;
    z-index: 1;
}
.wsp-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.wsp-footer a:hover { color: #fff; }

.wsp-footer__payments {
    background: linear-gradient(90deg, rgba(112, 180, 83, 0.18) 0%, rgba(112, 180, 83, 0.06) 45%, rgba(255,255,255,0.02) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}
.wsp-footer__payments-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.wsp-footer__payments-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.wsp-footer__payments-kicker {
    font-weight: 800;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.wsp-footer__payments-text { font-size: 13px; opacity: 0.92; }
.wsp-footer__payments-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 26px;
    color: rgba(255,255,255,0.92);
}
.wsp-footer__payments-icons i { opacity: 0.9; }

.wsp-footer__top { padding: 60px 0 48px; }
.wsp-footer__brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}
.wsp-footer__brand-main {
    font-family: var(--wsp-font-display);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.03em;
    color: #fff;
}
.wsp-footer__brand-sub {
    margin-top: 6px;
    font-weight: 800;
    letter-spacing: 0.24em;
    font-size: 11px;
    text-transform: uppercase;
    padding-top: 10px;
    border-top: 2px solid var(--wsp-primary-light);
    align-self: flex-start;
    color: rgba(255,255,255,0.86);
}
.wsp-footer__lead { font-size: 13px; line-height: 1.6; margin: 0 0 16px; max-width: 52ch; }

.wsp-footer__title {
    font-family: var(--wsp-font-display);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.wsp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    font-size: 13px;
}
.wsp-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 10px;
    font-size: 13px;
}
.wsp-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.wsp-footer__contact i { margin-top: 2px; color: rgba(255,255,255,0.86); }

.wsp-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}
.wsp-footer__social-link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.wsp-footer__social-link:hover {
    transform: translateY(-4px);
    background: rgba(112, 180, 83, 0.2);
    border-color: rgba(112, 180, 83, 0.5);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.wsp-footer__legal-note { font-size: 12px; opacity: 0.82; margin: -6px 0 14px; }
.wsp-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.wsp-footer__badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.92);
}

.wsp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}
.wsp-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.wsp-footer__copyright { margin: 0; font-size: 13px; opacity: 0.9; }
.wsp-footer__mini-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.92;
}
.wsp-footer__mini-links span { opacity: 0.5; }

@media (prefers-reduced-motion: reduce) {
    .wsp-footer__social-link { transition: none !important; }
    .wsp-footer__social-link:hover { transform: none; }
}

@supports (-webkit-touch-callout: none) {
    .wsp-footer { background-attachment: scroll; }
}

/* =========================================
   WHATSAPP FLOATING
   ========================================= */
.wsp-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wsp-success);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.25s;
    animation: wspPulse 2s infinite;
}
.wsp-whatsapp:hover {
    color: #fff;
    transform: scale(1.08);
}

@keyframes wspPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

/* =========================================
   SINGLE TOUR
   ========================================= */
.mth-tour-single { background: #fff; color: var(--wsp-text); font-family: var(--wsp-font-body); }
.mth-tour-hero { background: linear-gradient(180deg, #fff 0%, var(--wsp-bg-light) 100%); padding: 34px 0 28px; }
.mth-tour-breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px; margin-bottom: 18px; color: var(--wsp-muted); }
.mth-tour-breadcrumb a { color: var(--wsp-primary); text-decoration: none; font-weight: 700; }
.mth-tour-title-row { display: flex; justify-content: space-between; gap: 24px; align-items: flex-end; margin-bottom: 22px; }
.mth-tour-kicker,
.mth-tour-panel__eyebrow,
.mth-tour-kicker, .mth-tour-panel__eyebrow, .mth-tour-section-kicker {
    color: var(--wsp-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.mth-tour-title-row h1 { color: var(--wsp-dark); font-family: var(--wsp-font-display); font-size: clamp(32px, 4vw, 54px); font-weight: 900; line-height: 1.02; margin: 0; }
.mth-tour-slogan { color: var(--wsp-muted); font-size: 15px; line-height: 1.7; margin: 14px 0 0; max-width: 760px; }
.mth-tour-rating { background: #fff; border: 1px solid var(--wsp-border); border-radius: 8px; box-shadow: 0 12px 30px rgba(15,23,42,0.08); padding: 12px 14px; white-space: nowrap; }
.mth-tour-rating span { color: var(--wsp-yellow); display: block; font-size: 13px; margin-bottom: 4px; }
.mth-tour-rating a { color: var(--wsp-dark); font-size: 12px; font-weight: 800; text-decoration: none; }
.mth-tour-media-grid { display: grid; grid-template-columns: minmax(0, 2.15fr) minmax(260px, 0.85fr); grid-template-rows: repeat(2, 210px); gap: 12px; }
.mth-tour-main-image,
.mth-tour-side-media { border-radius: 8px; display: block; overflow: hidden; position: relative; text-decoration: none; }
.mth-tour-main-image { grid-row: span 2; }
.mth-tour-main-image img,
.mth-tour-side-media img { height: 100%; object-fit: cover; transition: transform 0.55s ease; width: 100%; }
.mth-tour-main-image:hover img,
.mth-tour-side-media:hover img { transform: scale(1.04); }
.mth-tour-main-image::after,
.mth-tour-side-media::after { background: linear-gradient(180deg, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.48) 100%); content: ""; inset: 0; position: absolute; }
.mth-tour-media-badge,
.mth-tour-side-media span { align-items: center; background: rgba(255,255,255,0.94); border-radius: 999px; bottom: 18px; color: var(--wsp-dark); display: inline-flex; font-size: 13px; font-weight: 900; gap: 8px; left: 18px; padding: 9px 13px; position: absolute; z-index: 1; }

.mth-tour-specs {
    background: #fff;
    border: 1px solid var(--wsp-border);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    margin: 10px auto 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.mth-tour-specs div { align-items: center; display: grid; gap: 2px 12px; grid-template-columns: auto minmax(0, 1fr); padding: 18px; }
.mth-tour-specs i { color: var(--wsp-primary); font-size: 20px; grid-row: span 2; }
.mth-tour-specs span { color: var(--wsp-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.mth-tour-specs strong { color: var(--wsp-dark); font-size: 13px; line-height: 1.35; }
.mth-tour-content { background: #fff; padding: 54px 0 70px; }
.mth-tour-panel { background: #fff; border: 1px solid var(--wsp-border); border-radius: 8px; box-shadow: 0 12px 34px rgba(15,23,42,0.06); margin-bottom: 24px; padding: 28px; }
.mth-tour-richtext { color: var(--wsp-text); font-size: 14px; line-height: 1.78; }
.mth-tour-richtext > :last-child { margin-bottom: 0; }
.mth-tour-richtext ul { list-style: none; margin: 0; padding: 0; }
.mth-tour-richtext li { margin-bottom: 9px; padding-left: 24px; position: relative; }
.mth-tour-richtext li::before { color: var(--wsp-primary); content: "\f00c"; font-family: "Font Awesome 6 Free"; font-size: 12px; font-weight: 900; left: 0; position: absolute; top: 2px; }
.mth-tour-accordion .accordion-item { border: 0; border-bottom: 1px solid var(--wsp-border); }
.mth-tour-accordion .accordion-button { background: #fff; box-shadow: none; color: var(--wsp-dark); gap: 12px; padding: 18px 0; }
.mth-tour-accordion .accordion-button span { background: rgba(112, 180, 83, 0.1); border-radius: 999px; color: var(--wsp-primary); flex: 0 0 auto; font-size: 12px; font-weight: 600; padding: 6px 10px; }
.mth-tour-accordion .accordion-button strong { font-size: 15px; font-weight: 600; }
.mth-tour-accordion .accordion-button:not(.collapsed) { color: var(--wsp-primary-dark); }
.mth-tour-accordion .accordion-collapse { transition: height 0.42s ease; }
.mth-tour-accordion .accordion-body { padding: 2px 0 22px; }
.mth-tour-day-image { aspect-ratio: 4 / 3; border-radius: 8px; height: auto; object-fit: cover; width: 100%; }
.mth-tour-list-title { color: var(--wsp-dark); font-family: var(--wsp-font-display); font-size: 17px; font-weight: 900; margin-bottom: 14px; }
.mth-tour-sidebar { position: sticky; top: 110px; }
.mth-tour-price-card,
.mth-tour-brochure { background: #fff; border: 1px solid var(--wsp-border); border-radius: 8px; box-shadow: 0 18px 45px rgba(15,23,42,0.1); padding: 22px; }
.mth-tour-price-card__tag { background: var(--wsp-primary); border-radius: 6px; color: #fff; display: inline-block; font-size: 11px; font-weight: 900; letter-spacing: 0.06em; padding: 7px 10px; text-transform: uppercase; }
.mth-tour-price-card__duration { color: var(--wsp-muted); font-size: 13px; font-weight: 800; margin-top: 16px; }
.mth-tour-price-card__duration i { color: var(--wsp-primary); margin-right: 6px; }
.mth-tour-price { margin: 18px 0; }
.mth-tour-price span,
.mth-tour-price small { color: var(--wsp-muted); display: block; font-size: 12px; font-weight: 700; }
.mth-tour-price strong { color: var(--wsp-dark); display: block; font-size: 42px; font-weight: 900; line-height: 1; }
.mth-tour-sidebar-list { border-top: 1px solid var(--wsp-border); list-style: none; margin: 20px 0 0; padding: 16px 0 0; }
.mth-tour-sidebar-list li { align-items: flex-start; color: var(--wsp-text); display: flex; font-size: 13px; gap: 10px; margin-bottom: 11px; }
.mth-tour-sidebar-list i { color: var(--wsp-primary); margin-top: 3px; width: 16px; }
.mth-tour-brochure { align-items: center;}
.mth-tour-brochure > i { align-items: center; background: rgba(112, 180, 83, 0.1); border-radius: 50%; color: var(--wsp-primary); display: inline-flex; font-size: 24px; height: 54px; justify-content: center; width: 54px; }
.mth-tour-brochure strong,
.mth-tour-brochure span,
.mth-tour-brochure a { display: block; }

label.form-label .text-danger {
    float: left;
    margin-right: 5px;
}
.mth-tour-brochure strong { color: var(--wsp-dark); font-weight: 500; }
.mth-tour-brochure span { color: var(--wsp-muted); font-size: 12px; line-height: 1.45; }
.mth-tour-brochure a { color: var(--wsp-primary); font-size: 12px; font-weight: 900; grid-column: 2; text-decoration: none; }
.mth-tour-contact-band { background: linear-gradient(90deg, #0069a8 0%, #00a4c8 100%); color: #fff; padding: 46px 0; }
.mth-tour-contact-inner { align-items: center; display: flex; gap: 24px; justify-content: space-between; }
.mth-tour-contact-inner p { font-size: 12px; font-weight: 900; letter-spacing: 0.1em; margin: 0 0 8px; text-transform: uppercase; }
.mth-tour-contact-inner h2 { font-family: var(--wsp-font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin: 0; max-width: 720px; }
.mth-tour-related,
.mth-tour-reviews { padding: 64px 0; }
.mth-tour-related { background: var(--wsp-bg-light); }
.mth-related-card { background: #fff; border: 1px solid var(--wsp-border); border-radius: 8px; box-shadow: 0 14px 35px rgba(15,23,42,0.08); color: inherit; display: block; overflow: hidden; text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.mth-related-card:hover { box-shadow: 0 24px 60px rgba(15,23,42,0.14); transform: translateY(-8px); }
.mth-related-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.mth-related-card div { padding: 18px; }
.mth-related-card h3 { color: var(--wsp-dark); font-size: 17px; font-weight: 900; margin-bottom: 8px; }
.mth-related-card p { color: var(--wsp-muted); font-size: 13px; line-height: 1.55; }
.mth-related-card span { color: var(--wsp-primary); font-size: 13px; font-weight: 900; }
.mth-tour-reviews { background: #fff; }
.mth-review-card { background: var(--wsp-bg-light); border: 1px solid var(--wsp-border); border-radius: 8px; min-height: 220px; padding: 22px; }
.mth-review-stars { color: var(--wsp-yellow); font-size: 13px; margin-bottom: 14px; }
.mth-review-card p { color: var(--wsp-text); font-size: 14px; line-height: 1.7; }
.mth-review-card strong { color: var(--wsp-dark); display: block; font-weight: 500; }
.mth-review-card span { color: var(--wsp-muted); font-size: 12px; font-weight: 800; }
.mth-tour-reviews-swiper { padding-bottom: 42px; }

/* =========================================
   BOOK NOW
   ========================================= */
.mth-book-now-page { background: #f7f9fb; color: var(--wsp-text); }
.mth-booking { padding: 42px 0 76px; }
.mth-booking__head { margin-bottom: 24px; }
.mth-booking__crumb { align-items: center; color: var(--wsp-muted); display: flex; flex-wrap: wrap; font-size: 12px; gap: 8px; margin-bottom: 18px; }
.mth-booking__crumb a { color: var(--wsp-primary); font-weight: 800; text-decoration: none; }
.mth-booking__kicker { color: var(--wsp-primary); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; margin: 0 0 8px; text-transform: uppercase; }
.mth-booking__head h1 { color: var(--wsp-dark); font-family: var(--wsp-font-display); font-size: clamp(34px, 4vw, 56px); font-weight: 900; line-height: 1.02; margin: 0; }
.mth-booking__head p:last-child { color: var(--wsp-muted); font-size: 15px; line-height: 1.65; margin: 12px 0 0; max-width: 620px; }
.mth-booking__steps { background: #fff; border: 1px solid var(--wsp-border); border-radius: 8px; display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 22px; overflow: hidden; }
.mth-booking__step { align-items: center; color: var(--wsp-muted); display: flex; font-size: 13px; font-weight: 900; gap: 10px; justify-content: center; padding: 14px; text-transform: uppercase; }
.mth-booking__step span { align-items: center; border: 1px solid var(--wsp-border); border-radius: 50%; display: inline-flex; height: 28px; justify-content: center; width: 28px; }
.mth-booking__step.is-active { background: #111827; color: #fff; }
.mth-booking__step.is-active span { border-color: rgba(255,255,255,0.4); }
.mth-booking__grid { align-items: start; display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr) 360px; }
.mth-booking-form,
.mth-booking-summary { background: #fff; border: 1px solid var(--wsp-border); border-radius: 8px; box-shadow: 0 18px 46px rgba(15,23,42,0.08); }
.mth-booking-form { overflow: hidden; }
.mth-booking__hp { display: none; }
.mth-booking-pane { display: none; padding: 24px; }
.mth-booking-pane.is-active { display: block; }
.mth-booking-section { border-bottom: 1px solid var(--wsp-border); padding: 0 0 24px; }
.mth-booking-section + .mth-booking-section { padding-top: 24px; }
.mth-booking-section:last-of-type { border-bottom: 0; }
.mth-booking-section__title { align-items: flex-end; display: flex; gap: 16px; justify-content: space-between; margin-bottom: 18px; }
.mth-booking-section__title span,
.mth-booking-summary__label { color: var(--wsp-primary); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; margin: 0; text-transform: uppercase; }
.mth-booking-section__title strong { color: var(--wsp-dark); font-size: 15px; line-height: 1.35; text-align: right; }
.mth-booking-fields { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mth-booking-fields label { display: grid; gap: 7px; margin: 0; }
.mth-booking-fields span { color: #455166; font-size: 12px; font-weight: 800; }
.mth-booking-fields input,
.mth-booking-fields select,
.mth-booking-fields textarea { background: #fff; border: 1px solid #dfe5ec; border-radius: 6px; color: var(--wsp-dark); font-size: 14px; min-height: 46px; outline: 0; padding: 10px 12px; transition: border-color 0.2s ease, box-shadow 0.2s ease; width: 100%; }
.mth-booking-fields textarea { line-height: 1.6; resize: vertical; }
.mth-booking-fields input:focus,
.mth-booking-fields select:focus,
.mth-booking-fields textarea:focus { border-color: var(--wsp-primary); box-shadow: 0 0 0 3px rgba(112, 180, 83, 0.12); }
.mth-booking-form.was-validated input:invalid,
.mth-booking-form.was-validated select:invalid,
.mth-booking-form.was-validated textarea:invalid { border-color: #004f8c; }
.mth-booking-field--wide { grid-column: 1 / -1; }
.mth-travelers { display: grid; gap: 14px; }
.mth-traveler { border: 1px solid #e7ebf0; border-radius: 8px; padding: 16px; }
.mth-traveler h3 { align-items: center; color: var(--wsp-dark); display: flex; font-size: 16px; font-weight: 900; justify-content: space-between; margin: 0 0 14px; }
.mth-traveler h3 span { background: #f1f5f9; border-radius: 999px; color: #455166; font-size: 11px; font-weight: 900; padding: 5px 9px; text-transform: uppercase; }
.mth-booking-alert { margin-top: 18px; }
.mth-booking-alert__box { border-radius: 8px; font-size: 13px; font-weight: 800; line-height: 1.5; padding: 12px 14px; }
.mth-booking-alert__box.is-info { background: #eef6ff; color: #075985; }
.mth-booking-alert__box.is-warning { background: #f3f8f0; color: #004f8c; }
.mth-booking-alert__box.is-error { background: #f3f8f0; color: #004f8c; }
.mth-booking-alert__box.is-success { background: #ecfdf5; color: #065f46; }
.mth-booking-actions { align-items: center; display: flex; gap: 16px; justify-content: space-between; margin-top: 24px; }
.mth-booking-link { color: var(--wsp-muted); font-size: 13px; font-weight: 900; text-decoration: none; }
.mth-booking-link:hover { color: var(--wsp-primary); }
.mth-booking-submit { align-items: center; background: var(--wsp-primary); border: 0; border-radius: 6px; color: #fff; display: inline-flex; font-size: 13px; font-weight: 900; gap: 10px; justify-content: center; min-height: 46px; min-width: 132px; padding: 12px 18px; text-transform: uppercase; transition: background 0.2s ease, transform 0.2s ease; }
.mth-booking-submit:hover { background: var(--wsp-primary-dark); transform: translateY(-1px); }
.mth-booking-submit:disabled { cursor: wait; opacity: 0.72; transform: none; }
.mth-booking-spinner { border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; display: none; height: 16px; width: 16px; }
.mth-booking-submit.is-loading .mth-booking-spinner { animation: mth-booking-spin 0.7s linear infinite; display: inline-block; }
@keyframes mth-booking-spin { to { transform: rotate(360deg); } }
.mth-booking-summary { padding: 22px; position: sticky; top: 110px; }
.mth-booking-summary h2 { color: var(--wsp-dark); font-size: 18px; font-weight: 900; line-height: 1.35; margin: 8px 0 18px; text-transform: uppercase; }
.mth-booking-summary dl { display: grid; gap: 0; margin: 0; }
.mth-booking-summary dl div { align-items: center; border-top: 1px solid #edf1f5; display: flex; gap: 12px; justify-content: space-between; min-height: 42px; padding: 9px 0; }
.mth-booking-summary dt { color: var(--wsp-muted); font-size: 12px; font-weight: 800; }
.mth-booking-summary dd { color: var(--wsp-dark); font-size: 13px; font-weight: 900; margin: 0; text-align: right; }
.mth-booking-summary__total { background: #111827; border-radius: 8px; border-top: 0 !important; margin: 12px 0 4px; padding: 14px !important; }
.mth-booking-summary__total dt,
.mth-booking-summary__total dd { color: #fff; }
.mth-booking-summary__total dd { font-size: 18px; }
.mth-izipay-shell { margin: 0 auto; max-width: 620px; }
.mth-izipay-hero { align-items: center; background: #111827; border-radius: 8px; color: #fff; display: grid; gap: 18px; grid-template-columns: auto minmax(0, 1fr); margin-bottom: 16px; padding: 22px; }
.mth-izipay-hero__icon { align-items: center; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: inline-flex; font-size: 22px; height: 58px; justify-content: center; width: 58px; }
.mth-izipay-hero p { color: #004f8c; font-size: 11px; font-weight: 900; letter-spacing: 0.12em; margin: 0 0 6px; text-transform: uppercase; }
.mth-izipay-hero h2 { color: #fff; font-size: 25px; font-weight: 900; line-height: 1.16; margin: 0; }
.mth-izipay-hero span { color: #d7dde6; display: block; font-size: 15px; line-height: 1.55; margin-top: 8px; }
.mth-izipay-trust { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 16px; }
.mth-izipay-trust div { align-items: center; background: #f8fafc; border: 1px solid #e4e9ef; border-radius: 8px; color: #455166; display: flex; font-size: 12px; font-weight: 900; gap: 8px; justify-content: center; min-height: 48px; padding: 10px; text-align: center; }
.mth-izipay-trust i { color: var(--wsp-primary); font-size: 16px; }
.mth-izipay-status { background: #eef6ff; border: 1px solid #cfe8ff; border-radius: 8px; color: #075985; font-size: 14px; font-weight: 800; line-height: 1.55; margin-bottom: 16px; padding: 15px 16px; text-align: center; }
.mth-izipay-status.is-warning { background: #f3f8f0; border-color: #004f8c; color: #004f8c; }
.mth-izipay-status.is-error { background: #f3f8f0; border-color: #004f8c; color: #004f8c; }
.mth-izipay-status.is-success { background: #ecfdf5; border-color: #004f8c; color: #065f46; }
.mth-izipay-frame { background: #fff; border: 1px solid #dfe5ec; border-radius: 8px; box-shadow: 0 18px 44px rgba(15,23,42,0.1); margin: 0 auto; min-height: 520px; overflow: hidden; padding: 22px; }
.mth-izipay-frame .kr-embedded { background: #fff; border: 0; margin: 0 auto; max-width: 500px; min-height: 420px; padding: 6px 0; }
.mth-izipay-frame .kr-form-error { border-radius: 8px; font-size: 13px; line-height: 1.45; margin-bottom: 12px; }
.mth-izipay-frame .kr-field-wrapper,
.mth-izipay-frame .kr-pan,
.mth-izipay-frame .kr-expiry,
.mth-izipay-frame .kr-security-code,
.mth-izipay-frame .kr-card-holder-name { margin-bottom: 14px; }
.mth-izipay-frame .kr-field-wrapper label,
.mth-izipay-frame .kr-field label { color: #344054; font-size: 13px; font-weight: 900; margin-bottom: 7px; }
.mth-izipay-frame .kr-field,
.mth-izipay-frame .kr-input-field { border-color: #d7dee8 !important; border-radius: 8px !important; }
.mth-izipay-frame .kr-field:focus-within,
.mth-izipay-frame .kr-input-field:focus-within { border-color: var(--wsp-primary) !important; box-shadow: 0 0 0 3px rgba(112, 180, 83, 0.12) !important; }
.mth-izipay-frame .kr-payment-button,
.mth-izipay-frame button[type="submit"] { background: var(--wsp-primary) !important; border: 0 !important; border-radius: 8px !important; box-shadow: 0 14px 26px rgba(112, 180, 83, 0.22) !important; color: #fff !important; font-size: 15px !important; font-weight: 900 !important; min-height: 52px !important; text-transform: uppercase !important; width: 100% !important; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
    .wsp-hero__title { font-size: 36px; }
    .wsp-section-title { font-size: 26px; }
    .wsp-experts__title { font-size: 28px; }
    .wsp-ready__title { font-size: 30px; }

    .wsp-trek-card { flex-direction: column; }
    .wsp-trek-card__img { flex: 0 0 220px; height: 220px; }

    .wsp-stats__logos { justify-content: center; margin-top: 18px; }
    .wsp-treks__slider { padding: 0 24px; }
    .wsp-swiper-btn--prev { left: -6px; }
    .wsp-swiper-btn--next { right: -6px; }
    .mth-tour-title-row,
    .mth-tour-contact-inner { align-items: flex-start; flex-direction: column; }
    .mth-tour-media-grid { grid-template-columns: 1fr; grid-template-rows: 360px 180px 180px; }
    .mth-tour-main-image { grid-row: auto; }
    .mth-tour-specs { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
    .mth-tour-sidebar { position: static; }
    .mth-booking__grid { grid-template-columns: 1fr; }
    .mth-booking-summary { position: static; }
}

@media (max-width: 575.98px) {
    .wsp-hero { height: 430px; }
    .wsp-hero__title { font-size: 28px; }
    .wsp-hero__subtitle { font-size: 15px; }
    .wsp-section-title { font-size: 22px; }
    .wsp-awards { gap: 14px; }
    .wsp-awards__medal { width: 60px; height: 60px; }
    .wsp-awards__tripadvisor { width: 72px; height: 72px; }
    .wsp-trust .col-md { margin-bottom: 18px; }
    .wsp-whatsapp { width: 50px; height: 50px; font-size: 26px; }
    .mth-tour-hero { padding-top: 22px; }
    .mth-tour-media-grid { grid-template-rows: 300px 160px 160px; }
    .mth-tour-specs { grid-template-columns: 1fr; }
    .mth-tour-panel { padding: 20px; }
    .mth-tour-price strong { font-size: 34px; }
    .mth-booking { padding: 28px 0 54px; }
    .mth-booking__steps { grid-template-columns: 1fr; }
    .mth-booking__step { justify-content: flex-start; }
    .mth-booking-pane,
    .mth-booking-summary { padding: 18px; }
    .mth-booking-section__title { align-items: flex-start; flex-direction: column; gap: 6px; }
    .mth-booking-section__title strong { text-align: left; }
    .mth-booking-fields { grid-template-columns: 1fr; }
    .mth-booking-actions { align-items: stretch; flex-direction: column-reverse; }
    .mth-booking-submit { width: 100%; }
    .mth-izipay-hero { align-items: flex-start; grid-template-columns: 1fr; padding: 20px; }
    .mth-izipay-hero h2 { font-size: 22px; }
    .mth-izipay-hero span { font-size: 14px; }
    .mth-izipay-trust { grid-template-columns: 1fr; }
    .mth-izipay-frame { min-height: 500px; padding: 16px; }
}

/* ==========================================================================
   Ready to Travel Section
   ========================================================================== */
.mpt-ready-to-travel {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    color: #ffffff;
    overflow: hidden;
}

.mpt-ready-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.mpt-ready-content {
    position: relative;
    z-index: 2;
}

.mpt-ready-kicker {
    display: block;
    color: #f3a61f; /* beautiful gold/orange brand color */
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mpt-ready-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    color: #ffffff;
}

.mpt-ready-btn {
    border-radius: 4px;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    border: 2px solid #ffffff;
    font-size: 0.95rem;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
}

.mpt-ready-btn:hover {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.mpt-ready-btn:active {
    transform: translateY(0);
}

/* Tour cards in the 2x2 grid */
.mpt-ready-grid {
    margin-top: 1rem;
}

.mpt-ready-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.35s ease;
    height: 100%;
}

.mpt-ready-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.mpt-ready-icon {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mpt-ready-card:hover .mpt-ready-icon {
    background: #f3a61f;
    color: #111111;
    transform: scale(1.1);
}

.mpt-ready-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.mpt-ready-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    margin: 0;
}

@media (max-width: 991.98px) {
    .mpt-ready-to-travel {
        text-align: center;
        padding: clamp(3.5rem, 7vw, 5rem) 0;
    }
    .mpt-ready-title {
        margin-bottom: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .mpt-ready-btn {
        margin-bottom: 3.5rem;
    }
    .mpt-ready-grid {
        margin-top: 0;
    }
}

/* ==========================================================================
   MPT Tour Card (card-3.php)
   ========================================================================== */
.mpt-tour-card {
    position: relative;
    background: var(--wsp-bg-card, #ffffff);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    z-index: 1;
}

.mpt-tour-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid var(--wsp-primary, #004f8c);
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 10;
}

.mpt-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(112, 180, 83, 0.12);
}

.mpt-tour-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.mpt-tour-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
}

.mpt-tour-card__link:hover, 
.mpt-tour-card__link:focus {
    text-decoration: none;
    color: inherit;
}

.mpt-tour-card__image-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #eaeaea;
}

@supports (aspect-ratio: 1) {
    .mpt-tour-card__image-box {
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

.mpt-tour-card__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mpt-tour-card:hover .mpt-tour-card__image-box img {
    transform: scale(1.05);
}

.mpt-tour-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mpt-tour-card__badge--style {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--wsp-dark, #1a2332);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mpt-tour-card__content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mpt-tour-card__title {
    font-family: var(--wsp-font-display, "Raleway", sans-serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--wsp-dark, #1a2332);
    margin: 0 0 14px 0;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.mpt-tour-card:hover .mpt-tour-card__title {
    color: var(--wsp-primary, #004f8c);
}

/* Specs Grid */
.mpt-tour-card__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
    margin-bottom: 18px;
    padding: 12px;
    background: var(--wsp-bg-light, #f7f8fa);
    border-radius: 8px;
    border: 1px solid var(--wsp-border, #e5e8ec);
}

.mpt-tour-card__spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--wsp-text, #4a5568);
}

.mpt-tour-card__spec i {
    color: var(--wsp-primary, #004f8c);
    font-size: 14px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.mpt-tour-card__spec span {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mpt-tour-card__excerpt {
    font-family: var(--wsp-font-body, "Poppins", sans-serif);
    font-size: 13px;
    line-height: 1.6;
    color: var(--wsp-muted, #6b7785);
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.mpt-tour-card__details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--wsp-border, #e5e8ec);
}

.mpt-tour-card__price {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.mpt-tour-card__price-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--wsp-muted, #6b7785);
    font-weight: 700;
    letter-spacing: 1px;
}

.mpt-tour-card__price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--wsp-primary, #004f8c);
}

.mpt-tour-card__btn {
    font-family: var(--wsp-font-body, "Poppins", sans-serif);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: var(--wsp-primary, #004f8c);
    border: 1px solid var(--wsp-primary, #004f8c);
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mpt-tour-card:hover .mpt-tour-card__btn {
    background-color: var(--wsp-dark, #1a2332);
    border-color: var(--wsp-dark, #1a2332);
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(26, 35, 50, 0.15);
}

.mpt-tour-card__btn i {
    transition: transform 0.25s ease;
}

.mpt-tour-card:hover .mpt-tour-card__btn i {
    transform: translateX(4px);
}

@media (max-width: 575.98px) {
    .mpt-tour-card__specs {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mpt-tour-card,
    .mpt-tour-card::after,
    .mpt-tour-card__image-box img,
    .mpt-tour-card__btn,
    .mpt-tour-card__btn i {
        transition: none !important;
    }
    .mpt-tour-card:hover {
        transform: none !important;
    }
    .mpt-tour-card:hover .mpt-tour-card__btn i {
        transform: none !important;
    }
}

/* ==========================================================================
   FAQ Accordion Section (Elegant & Minimalist)
   ========================================================================== */
.mpt-faq-section {
    padding: 80px 0;
    background-color: var(--wsp-bg-light, #f7f8fa);
}

.mpt-faq-head {
    margin-bottom: 50px;
}

.mpt-faq-head h2 {
    color: var(--wsp-dark, #1a2332);
    font-family: var(--wsp-font-display, "Raleway", sans-serif);
}

.mpt-faq-kicker {
    color: var(--wsp-muted, #6b7785);
    font-family: var(--wsp-font-body, "Poppins", sans-serif);
    font-size: 15px;
    margin-bottom: 0;
}

/* Elegant Accordion */
.mpt-accordion-elegant .accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 12px;
}

.mpt-accordion-elegant .accordion-header {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.mpt-accordion-elegant .accordion-button {
    background-color: #ffffff;
    color: var(--wsp-text, #4a5568);
    font-family: var(--wsp-font-display, "Raleway", sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 20px 24px;
    border-radius: 4px !important;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.mpt-accordion-elegant .accordion-button:hover {
    border-color: rgba(0,0,0,0.08);
}

.mpt-accordion-elegant .accordion-button:not(.collapsed) {
    color: var(--wsp-dark, #1a2332);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid transparent;
}

.mpt-accordion-elegant .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Custom + / - Icon */
.mpt-accordion-elegant .accordion-button::after {
    content: "+";
    background-image: none !important;
    font-family: monospace;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    transition: transform 0.3s ease;
    color: var(--wsp-dark, #1a2332);
}

/* When expanded, show minus */
.mpt-accordion-elegant .accordion-button:not(.collapsed)::after {
    content: "\2212";
    transform: rotate(180deg);
}

.mpt-accordion-elegant .accordion-body {
    background-color: #ffffff;
    font-family: var(--wsp-font-body, "Poppins", sans-serif);
    font-size: 14px;
    color: var(--wsp-muted, #6b7785);
    line-height: 1.6;
    padding: 0 24px 24px 24px;
    border-radius: 0 0 4px 4px;
    margin-top: -1px;
    border: 1px solid rgba(0,0,0,0.03);
    border-top: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767.98px) {
    .mpt-faq-section {
        padding: 50px 0;
    }
    .mpt-accordion-elegant .accordion-button {
        padding: 16px 20px;
        font-size: 12px;
    }
    .mpt-accordion-elegant .accordion-body {
        padding: 0 20px 20px 20px;
    }
}

/* MPT Header Gallery */
.mpt-header-top { background: #f8fafc; box-shadow: 0 0 0 100vmax #f8fafc; clip-path: inset(0 -100vmax); margin-bottom: 20px; padding: 20px 16px 1px; }

.mpt-mobile-tour-hero {
    display: none;
}

.mpt-breadcrumb { font-size: 14px; color: #9ca3af; margin-bottom: 15px; font-style: italic; }
.mpt-breadcrumb a {
    color: #9ca3af !important;
    text-decoration: none;
    font-style: italic;
}
.mpt-breadcrumb a:hover { text-decoration: underline; }
.mpt-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 12px; }
.mpt-title-row h1 { font-size: 32px; font-weight: 700; margin: 0; color: #1a1a1a; font-family: var(--wsp-font-display, "Raleway", sans-serif); }
.mpt-badge { background: #f0f2f5; padding: 5px 12px; border-radius: 6px; font-size: 14px; font-weight: 600; color: #444; border: 1px solid #e1e4e8; }
.mpt-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 15px; font-weight: 500; margin-bottom: 25px; }
.mpt-rating-box { display: flex; align-items: center; gap: 8px; }
.mpt-stars { color: #f59e0b; font-size: 14px; }
.mpt-rating-badge { background: #004f8c; color: white; padding: 3px 10px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.mpt-reviews-text { color: #4b5563; font-size: 14px; }
.mpt-reviews-text strong { cursor: pointer; color: #111; }
.mpt-reviews-text a {
    color: inherit !important;
    text-decoration: none !important;
}
.mpt-duration { font-weight: 700; color: #111; font-size: 16px; }

.mpt-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-radius: 16px; overflow: hidden; margin-bottom: 30px; height: 520px; }
.mpt-gallery-left { height: 100%; border-radius: 16px 0 0 16px; overflow: hidden; }
.mpt-gallery-left a, .mpt-gallery-left img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.mpt-gallery-left a:hover img { transform: scale(1.03); }
.mpt-gallery-right { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 100%; }
.mpt-gallery-item { position: relative; height: 100%; overflow: hidden; border-radius: 8px; }
.mpt-gallery-item:nth-child(2) { border-top-right-radius: 16px; }
.mpt-gallery-item:nth-child(4) { border-bottom-right-radius: 16px; }
.mpt-gallery-item a, .mpt-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.mpt-gallery-item a:hover img { transform: scale(1.05); }

.mpt-view-all-btn { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(30,30,30,0.75); color: white; padding: 10px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; border: none; cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all 0.3s; white-space: nowrap; z-index: 5; pointer-events: none; }
.mpt-gallery-item a:hover .mpt-view-all-btn { background: rgba(0,0,0,0.9); transform: translateX(-50%) scale(1.05); }

@media (max-width: 991px) {
    .mpt-gallery-grid { height: 320px; }
    .mpt-title-row h1 { font-size: 28px; }
}
@media (max-width: 767px) {
    .mpt-mobile-tour-hero {
        background-position: center;
        background-size: cover;
        display: block;
        min-height: 360px;
        position: relative;
    }

    .mpt-mobile-tour-hero__overlay {
        align-items: flex-end;
        background: linear-gradient(180deg, rgba(2, 6, 23, .12) 0%, rgba(2, 6, 23, .42) 46%, rgba(2, 6, 23, .84) 100%);
        display: flex;
        inset: 0;
        padding: 88px 18px 24px;
        position: absolute;
    }

    .mpt-mobile-tour-hero__content {
        color: #fff;
        max-width: 100%;
    }

    .mpt-mobile-tour-hero__rating {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 10px;
    }

    .mpt-mobile-tour-hero__rating span {
        align-items: center;
        background: rgba(255, 255, 255, .16);
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: 999px;
        color: #fff;
        display: inline-flex;
        font-size: 12px;
        font-weight: 800;
        gap: 5px;
        min-height: 28px;
        padding: 0 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mpt-mobile-tour-hero__rating i {
        color: #fbbf24;
        font-size: 11px;
    }

    .mpt-mobile-tour-hero h1 {
        color: #fff;
        font-size: 2rem;
        font-weight: 900;
        line-height: 1.05;
        margin: 0;
        text-shadow: 0 3px 16px rgba(0, 0, 0, .35);
    }

    .mpt-mobile-tour-hero p {
        color: rgba(255, 255, 255, .9);
        font-size: .95rem;
        font-weight: 700;
        line-height: 1.35;
        margin: 10px 0 0;
    }

    .mpt-header-top {
        background: #fff;
        box-shadow: none;
        clip-path: none;
        margin-bottom: 0;
        padding: 12px 16px 0;
    }

    .mpt-header-top > .d-flex {
        display: block !important;
    }

    .mpt-header-top--has-mobile-hero .mpt-title-row,
    .mpt-header-top--has-mobile-hero .mpt-header-right {
        display: none !important;
    }

    .mpt-breadcrumb {
        display: none;
    }

    .mpt-meta-row {
        gap: 8px;
        margin-bottom: 12px;
    }

    .mpt-rating-box {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 999px;
        gap: 6px;
        padding: 5px 9px;
    }

    .mpt-reviews-text {
        font-size: 12px;
    }

    .mpt-duration {
        border-radius: 999px !important;
        font-size: 12px !important;
        padding: 5px 10px !important;
    }

    .mpt-header-top--has-mobile-hero .mpt-gallery-grid { display: none; }
    .mpt-gallery-left { height: 260px; border-radius: 12px; }
    .mpt-gallery-right { display: none; }
    .mpt-title-row h1 { font-size: 24px; }
}

/* MPT Tour Details Section */
.mpt-tour-details-container {
    font-family: var(--wsp-font-body, "Poppins", sans-serif);
}

.mpt-specs-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 14px; 
}
@media (max-width: 767px) {
    .mpt-tour-details-container {
        margin-bottom: 24px !important;
        margin-top: 12px !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    .mpt-specs-grid {
        gap: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 14px !important;
        margin-top: 0 !important;
    }
}
.mpt-spec-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    min-height: 84px;
    padding: 14px 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5edf3;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.mpt-spec-item:hover {
    background: #fff;
    border-color: rgba(0, 79, 140, 0.22);
    box-shadow: 0 14px 30px rgba(0, 79, 140, 0.09);
    transform: translateY(-3px);
}
.mpt-spec-icon { 
    font-size: 15px; 
    color: #004f8c; 
    background: #edf6fc; 
    border: 1px solid rgba(0, 79, 140, 0.12);
    width: 36px; 
    height: 36px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    flex-shrink: 0;
}
.mpt-spec-content { 
    flex-grow: 1; 
}
.mpt-spec-title { 
    font-size: 14px; 
    font-weight: 800; 
    color: #0f172a; 
    margin-bottom: 4px;
    line-height: 1.25;
}
.mpt-spec-desc { 
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b; 
    letter-spacing: 0.02em;
    line-height: 1.3; 
    text-transform: uppercase;
}

/* Level Bars */
.mpt-level-bars { display: flex; gap: 3px; align-items: center; }
.mpt-level-bars i { width: 12px; height: 5px; border-radius: 3px; background-color: #e2e8f0; display: inline-block; }
.mpt-level-bars i.active { background-color: #f59e0b; }

/* Map Area */
.mpt-map-area { position: relative; }
.mpt-map-wrapper { position: relative; border-radius: 12px; overflow: hidden; }
.mpt-map-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.mpt-map-btn { position: absolute; bottom: 20px; right: 20px; font-weight: 600; font-size: 14px; padding: 8px 20px; display: inline-flex; align-items: center; gap: 8px; z-index: 10; color: #111; text-decoration: none; }
.mpt-map-btn:hover { color: #111; background-color: #f8f9fa; }


/* Booking Widget */
.mpt-booking-widget {
    border: 1px solid #e5e8ec;
    border-radius: 16px;
    background-color: #fff;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.mpt-booking-widget:hover {
    border-color: rgba(0, 79, 140, 0.28);
    box-shadow: 0 20px 44px rgba(0, 79, 140, 0.12) !important;
    transform: translateY(-3px);
}
.mpt-booking-tag { font-size: 11px; font-weight: 700; }
.cursor-pointer { cursor: pointer; }
.mpt-price-main { line-height: 1.1; }

@media (max-width: 991px) {
    .mpt-booking-widget { position: static !important; margin-top: 30px; }
}

.mpt-sidebar-sticky-stack {
    position: sticky;
    top: 30px;
    z-index: 10;
}

@media (max-width: 991px) {
    .mpt-sidebar-sticky-stack {
        position: static;
    }
}

.mpt-mobile-bottom-bar {
    display: none;
}

@media (max-width: 767px) {
    body.single-tours {
        padding-bottom: 82px;
    }

    .mpt-spec-item {
        align-items: center;
        border-radius: 12px;
        gap: 8px;
        min-height: 60px;
        padding: 9px 10px;
    }

    .mpt-spec-icon {
        font-size: 13px;
        height: 30px;
        width: 30px;
    }

    .mpt-spec-title {
        font-size: 12.5px;
        margin-bottom: 2px;
    }

    .mpt-spec-desc {
        font-size: 9.5px;
        letter-spacing: .01em;
    }

    .mpt-level-bars {
        gap: 2px;
        margin-left: 4px !important;
    }

    .mpt-level-bars i {
        height: 4px;
        width: 8px;
    }

    .mpt-overview-text {
        margin-top: 18px !important;
    }

    .mpt-booking-widget,
    .mpt-why-agency-card {
        display: none;
    }

    .mpt-mobile-bottom-bar {
        align-items: center;
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid #e2e8f0;
        bottom: 0;
        box-shadow: 0 -16px 34px rgba(15, 23, 42, .14);
        display: flex;
        gap: 12px;
        justify-content: space-between;
        left: 0;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        position: fixed;
        right: 0;
        z-index: 1050;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .mpt-mobile-bottom-bar__price {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    .mpt-mobile-bottom-bar__price span {
        color: #64748b;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .08em;
        line-height: 1;
        text-transform: uppercase;
    }

    .mpt-mobile-bottom-bar__price strong {
        color: #0f172a;
        display: block;
        font-size: 18px;
        font-weight: 950;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .mpt-mobile-bottom-bar__button {
        align-items: center;
        background: #25d366;
        border: 1px solid #20bd5b;
        border-radius: 999px;
        box-shadow: 0 10px 22px rgba(37, 211, 102, .28);
        color: #fff !important;
        display: inline-flex;
        flex: 0 0 auto;
        font-size: 14px;
        font-weight: 900;
        gap: 8px;
        justify-content: center;
        min-height: 46px;
        padding: 0 18px;
        text-decoration: none;
    }

    .mpt-mobile-bottom-bar__button i {
        font-size: 18px;
    }
}

/* Sticky Full Width Navbar */
.mpt-sticky-navbar-wrapper {
    box-sizing: border-box;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e6edf3;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    max-width: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}
.mpt-sticky-navbar-wrapper * {
    box-sizing: border-box;
}
.mpt-sticky-navbar-wrapper .container {
    overflow: visible;
    position: relative;
}
.mpt-sticky-nav {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
}
.mpt-sticky-nav::-webkit-scrollbar {
    display: none;
}
.mpt-nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
}
.mpt-nav-item a {
    align-items: center;
    color: #334155;
    display: inline-flex;
    gap: 8px;
    justify-content: flex-start;
    min-height: 56px;
    padding: 16px 0 15px;
    position: relative;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}
.mpt-nav-item a::before {
    content: none;
}
.mpt-nav-item a i {
    color: #004f8c;
    font-size: 14px;
    position: relative;
    transition: transform 0.2s ease, color 0.2s ease;
}
.mpt-nav-item a span,
.mpt-nav-item a {
    z-index: 1;
}
.mpt-nav-item a:hover {
    color: #004f8c;
    transform: translateY(-1px);
}
.mpt-nav-item a:hover i {
    transform: translateY(-1px);
}
.mpt-nav-item a.active {
    background: transparent;
    color: #004f8c;
    font-weight: 800;
}
.mpt-nav-item a.active i {
    color: #004f8c;
    transform: translateY(-1px);
}
.mpt-nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #004f8c;
    box-shadow: none;
    transition: width 0.28s ease, left 0.28s ease;
    border-radius: 2px;
    pointer-events: none;
    z-index: 3;
}

.scrollspy-example > section[id] {
    scroll-margin-top: 92px;
}

/* Single Tour: Private Prices */
.mpt-private-prices {
    border-top: 1px solid #e5e7eb;
    padding-top: 28px;
}

.mpt-private-service-description {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.mpt-private-service-description > *:last-child {
    margin-bottom: 0;
}

.mpt-private-price-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpt-private-price-card {
    --mpt-private-accent: #004f8c;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    overflow: hidden;
    padding: 22px;
    position: relative;
}

.mpt-private-price-card::before {
    background: var(--mpt-private-accent);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.mpt-private-price-card--rojo {
    --mpt-private-accent: #dc2626;
}

.mpt-private-price-card--naranja {
    --mpt-private-accent: #f97316;
}

.mpt-private-price-card--verde {
    --mpt-private-accent: #009b72;
}

.mpt-private-price-card--azul {
    --mpt-private-accent: #004f8c;
}

.mpt-private-price-card--amarillo {
    --mpt-private-accent: #eab308;
}

.mpt-private-price-card--marron {
    --mpt-private-accent: #92400e;
}

.mpt-private-price-option {
    color: var(--mpt-private-accent);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mpt-private-price-card h3 {
    color: #0f172a;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.mpt-private-price-subtitle {
    color: #64748b;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 8px 0 0;
}

.mpt-private-price-amount {
    color: var(--mpt-private-accent);
    font-size: 1.9rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 18px;
}

.mpt-private-price-description {
    color: #475569;
    font-size: .92rem;
    line-height: 1.6;
    margin: 14px 0 0;
}

.mpt-private-price-description > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    :root {
        --mpt-admin-bar-offset: 0px;
    }

    body.admin-bar {
        --mpt-admin-bar-offset: 46px;
    }

    html,
    body.single-tours {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mth-site-header,
    .mth-mobile-header,
    .mth-mobile-bar,
    .mth-mobile-bar .container {
        max-width: 100%;
        overflow-x: clip;
    }

    .mpt-sticky-navbar-wrapper {
        left: 0;
        right: 0;
        inset-inline: 0;
        max-width: 100%;
        overflow: visible;
        position: sticky !important;
        top: var(--mpt-admin-bar-offset, 0px) !important;
        transform: translateZ(0);
        padding: 0;
        width: 100%;
        z-index: 1040;
    }
    .mpt-sticky-navbar-wrapper .container {
        max-width: 100%;
        overflow: visible;
        padding-left: 14px;
        padding-right: 14px;
    }
    .mpt-sticky-navbar-wrapper.mpt-is-mobile-fixed {
        left: 0 !important;
        max-width: 100vw;
        position: fixed !important;
        right: auto !important;
        top: var(--mpt-admin-bar-offset, 0px) !important;
        width: 100vw;
    }
    .mpt-sticky-navbar-placeholder {
        display: none;
    }
    .mpt-sticky-navbar-placeholder.is-active {
        display: block;
    }
    .mpt-nav-item {
        flex: 0 0 auto;
    }
    .mpt-sticky-nav {
        gap: 22px;
        max-width: 100%;
    }
    .mpt-nav-item a {
        min-height: 52px;
        padding: 14px 0 13px;
    }

    .mpt-private-price-grid {
        grid-template-columns: 1fr;
    }
}

/* Highlights List */
.mpt-highlights-list {
    margin-bottom: 40px;
}
.mpt-highlights-list h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}
.mpt-highlights-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.mpt-highlights-list ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
}
.mpt-highlights-list ul li:last-child {
    margin-bottom: 0;
}
.mpt-highlights-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Trip Summary Timeline */
.mpt-trip-summary {
    margin-bottom: 40px;
}

.mpt-trip-summary br {
    display: none;
}
.mpt-trip-summary h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}
.mpt-trip-summary ul, .mpt-trip-summary ol, ul.mpt-trip-summary, ol.mpt-trip-summary {
    margin-top: 30px;
    list-style: none !important;
    padding-left: 0 !important;
    position: relative !important;
    margin-bottom: 30px;
}
/* Vertical line */
.mpt-trip-summary ul::before, .mpt-trip-summary ol::before, ul.mpt-trip-summary::before, ol.mpt-trip-summary::before {
    content: '' !important;
    position: absolute !important;
    top: 10px !important;
    bottom: 20px !important;
    left: 4px !important;
    width: 1px !important;
    background-color: #004f8c !important; /* Light green line */
}
.mpt-trip-summary ul li, .mpt-trip-summary ol li, ul.mpt-trip-summary li, ol.mpt-trip-summary li {
    position: relative !important;
    padding-left: 30px !important;
    padding-bottom: 20px !important;
    margin-bottom: 0px !important;
    font-size: 15px !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
    background: none !important;
}
.mpt-trip-summary ul li:last-child, .mpt-trip-summary ol li:last-child, ul.mpt-trip-summary li:last-child, ol.mpt-trip-summary li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
/* Green dot */
.mpt-trip-summary ul li::after, .mpt-trip-summary ol li::after, ul.mpt-trip-summary li::after, ol.mpt-trip-summary li::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 7px !important;
    width: 9px !important;
    height: 9px !important;
    background-color: #004f8c !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    border: none !important;
}
.mpt-trip-summary ul li strong, .mpt-trip-summary ol li strong, ul.mpt-trip-summary li strong, ol.mpt-trip-summary li strong {
    display: block !important;
    font-size: 16px !important;
    color: #0f172a !important;
    margin-bottom: 5px !important;
    font-weight: 700 !important;
}

/* Clean Accordion (Itinerary) */
.mpt-clean-accordion {
    width: 100%;
    background: #fff;
}
.mpt-clean-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}
.mpt-clean-accordion-item:last-child {
    border-bottom: none;
}
.mpt-clean-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}
.mpt-clean-accordion-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.mpt-clean-day {
    font-size: 16px;
    color: #4b5563; /* Gray */
    font-weight: 400;
    white-space: nowrap;
}
.mpt-clean-title {
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.mpt-clean-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
/* Rotate chevron when open */
.mpt-clean-accordion-header:not(.collapsed) .mpt-clean-icon {
    transform: rotate(180deg);
}

/* Hover and Active color states */
.mpt-clean-accordion-header:hover .mpt-clean-title,
.mpt-clean-accordion-header:not(.collapsed) .mpt-clean-title,
.mpt-clean-accordion-header:hover .mpt-clean-icon,
.mpt-clean-accordion-header:not(.collapsed) .mpt-clean-icon {
    color: #004f8c;
}
.mpt-clean-accordion-body {
    padding: 0 0 24px 0;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}
.mpt-clean-accordion-body p:last-child {
    margin-bottom: 0;
}

/* Premium Pricing Cards */
.mpt-price-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05) !important;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.mpt-price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}
.mpt-price-card:hover {
    transform: translateY(-8px);
}
.mpt-price-card:hover::before {
    opacity: 1;
}

/* Card Header - Premium Look */
.mpt-price-card .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #004f8c; 
    position: relative;
    text-align: center;
}
.mpt-price-card.red .card-header { color: #dc3545; }
.mpt-price-card.red { border-top: 4px solid #dc3545 !important; }
.mpt-price-card.orange .card-header { color: #fd7e14; }
.mpt-price-card.orange { border-top: 4px solid #fd7e14 !important; }
.mpt-price-card.green .card-header { color: #004f8c; }
.mpt-price-card.green { border-top: 4px solid #004f8c !important; }
.mpt-price-card.blue .card-header { color: #0d6efd; }
.mpt-price-card.blue { border-top: 4px solid #0d6efd !important; }
.mpt-price-card.yellow .card-header { color: #ffc107; }
.mpt-price-card.yellow { border-top: 4px solid #ffc107 !important; }
.mpt-price-card:not(.red):not(.orange):not(.green):not(.blue):not(.yellow) {
    border-top: 4px solid #004f8c !important;
}

/* Typography Enhancements */
.mpt-price-card .card-title {
    font-size: 1.4rem;
    color: #1e293b !important;
}
.mpt-price-card .card-subtitle {
    font-size: 0.95rem;
    color: #64748b !important;
}
.mpt-price-card .card-price-amount {
    color: #0f172a !important;
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-top: 15px;
    margin-bottom: 20px !important;
}
.mpt-price-card .card-price-amount .currency-symbol {
    font-size: 1.4rem;
    margin-top: 6px;
    color: #64748b;
}

.mpt-price-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569 !important;
}

/* Button Enhancement */
.mpt-price-card .wtrvl-checkout_button {
    background: linear-gradient(135deg, #004f8c 0%, #004f8c 100%) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}
.mpt-price-card .wtrvl-checkout_button:hover {
    background: linear-gradient(135deg, #004f8c 0%, #047857 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}

/* Tour Reviews Slider */
.tour-reviews-section {
    position: relative;
}
.mpt-reviews-nav .swiper-button-prev-custom,
.mpt-reviews-nav .swiper-button-next-custom,
.mpt-all-reviews-nav .swiper-button-prev-custom,
.mpt-all-reviews-nav .swiper-button-next-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #0f172a;
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    font-size: 1.1rem;
}

.mpt-reviews-nav .swiper-button-prev-custom:hover,
.mpt-reviews-nav .swiper-button-next-custom:hover,
.mpt-all-reviews-nav .swiper-button-prev-custom:hover,
.mpt-all-reviews-nav .swiper-button-next-custom:hover {
    background-color: #004f8c !important;
    color: #ffffff;
    border-color: #004f8c !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px -3px rgba(0, 166, 79, 0.3), 0 4px 6px -2px rgba(0, 166, 79, 0.15) !important;
}

.mpt-reviews-nav .swiper-button-prev-custom:active,
.mpt-reviews-nav .swiper-button-next-custom:active,
.mpt-all-reviews-nav .swiper-button-prev-custom:active,
.mpt-all-reviews-nav .swiper-button-next-custom:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 4px -1px rgba(0, 166, 79, 0.2) !important;
}
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-avatar.no-image {
    font-size: 1.2rem;
}
.rating-bubble {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}
.rating-bubble.empty {
    background-color: transparent;
}
.review-link {
    transition: color 0.3s ease;
}
.review-link:hover {
    color: #004f8c !important;
}
.reviews-swiper .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}
.reviews-swiper .swiper-pagination-bullet-active {
    background: #004f8c;
    width: 20px;
    border-radius: 10px;
}
.review-title-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3em; /* Approx 2 lines */
    line-height: 1.5;
}
.review-content-text {
    position: relative;
    overflow: hidden;
    max-height: 6.4em; /* Approx 4 lines */
    transition: max-height 0.4s ease;
}
.review-card.has-overflow .review-content-text::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2em;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.review-card.expanded .review-content-text {
    max-height: 1500px;
}
.review-card.expanded .review-content-text::after {
    opacity: 0;
}
.read-more-btn {
    cursor: pointer;
    color: #004f8c;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}
.read-more-btn:hover {
    color: #004f8c;
    text-decoration: underline;
}

/* --- MPT Booking Form --- */
.mpr-sidebar { width: 100%; }
.mpr-offer-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03); color: #111827; margin: 16px 0; padding: 24px; position: relative; }
.mpr-offer-card * { box-sizing: border-box; }
.mpr-offer-badge { background: #004f8c; border-radius: 999px; color: #fff; font-size: 0.75rem; font-weight: 800; left: 24px; line-height: 1; padding: 4px 10px; position: absolute; text-transform: uppercase; top: 0; transform: translateY(-50%); }
.mpr-offer-card.is-consultation .mpr-offer-badge { background: #003a66; }
.mpr-offer-form { display: grid; gap: 16px; }
.mpr-offer-from { color: #6b7280; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; }
.mpr-offer-price { align-items: baseline; color: #111827; display: flex; flex-wrap: wrap; font-size: 1.75rem; font-weight: 800; gap: 4px; line-height: 1; }
.mpr-offer-price em { color: #6b7280; font-size: 0.85rem; font-style: normal; font-weight: 500; }
.mpr-offer-field { align-items: center; display: grid; position: relative; }
.mpr-offer-field > span, .mpr-travelers-heading { color: #4b5563; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.mpr-traveler-qty { appearance: none; background: #f9fafb; border: 1px solid #d1d5db; border-radius: 8px; color: #111827; cursor: pointer; font-family: inherit; font-size: 0.9rem; font-weight: 600; min-height: 44px; outline: 0; padding: 0 2rem 0 12px; transition: 0.2s; }
.mpr-offer-date-wrap:hover, .mpr-offer-date-wrap.is-open { border-color: #004f8c; box-shadow: 0 0 0 1px #004f8c; }
.mpr-travelers-box { border-top: 1px solid #e5e7eb; display: grid; gap: 12px; padding-top: 16px; }
.mpr-traveler-row { align-items: center; display: flex; justify-content: space-between; gap: 12px; }
.mpr-traveler-row strong { color: #111827; display: block; font-size: 0.95rem; font-weight: 700; line-height: 1.2; }
.mpr-traveler-row span { color: #6b7280; display: block; font-size: 0.85rem; margin-top: 2px; }
.mpr-traveler-qty { width: 70px; text-align: center; padding: 0; min-height: 40px; }
.mpr-offer-date-wrap { align-items: center; background: #fff; border: 1px solid #d1d5db; border-radius: 8px; color: #9ca3af; cursor: pointer; display: grid; gap: 8px; grid-template-columns: auto minmax(0,1fr) auto; min-height: 44px; padding: 0 12px; transition: 0.2s; }
.mpr-offer-date-input { background: transparent; border: 0; color: #111827; cursor: pointer; font-size: 0.95rem; font-weight: 600; outline: 0; width: 100%; }
.mpr-offer-date-input::placeholder { color: #9ca3af; opacity: 1; }
.mpr-offer-total { align-items: center; background: #f0fdf4; border: 1px solid #004f8c; border-radius: 8px; color: #374151; display: flex; gap: 12px; justify-content: space-between; padding: 12px 16px; margin-top: 8px; }
.mpr-offer-total span { font-size: 0.85rem; font-weight: 600; }
.mpr-offer-total > strong { color: #004f8c; font-weight: 800; font-size: 1.1rem; white-space: nowrap; }
.mpr-offer-primary, .mpr-offer-secondary { align-items: center; border-radius: 8px; display: inline-flex; font-size: 1rem; font-weight: 800; justify-content: center; min-height: 48px; text-decoration: none; transition: 0.2s; width: 100%; letter-spacing: 0.02em; }
.mpr-offer-primary { background: #004f8c; border: 1px solid #004f8c; color: #fff; }
.mpr-offer-primary:hover { background: #004f8c; border-color: #004f8c; color: #fff; box-shadow: 0 4px 12px rgba(58,181,74,0.3); transform: translateY(-1px); }
.mpr-offer-secondary { background: #fff; border: 1px solid #d1d5db; color: #374151 !important; }
.mpr-offer-secondary:hover { border-color: #9ca3af; color: #111827 !important; background: #f9fafb; transform: translateY(-1px); }
.air-datepicker { border: 1px solid #d1d5db; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); z-index: 10000; }
.air-datepicker-cell.-selected-, .air-datepicker-cell.-selected-.-focus- { background: #004f8c; }
.air-datepicker-cell.-current- { color: #004f8c; }
/* Single Tour: Support Sidebar */
.mpr-support-card {
    background: #fff;
    border: 1px solid #e2e7ef;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .07);
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
    padding: 22px;
}

.mpr-support-head {
    align-items: flex-start;
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr);
}

.mpr-support-avatar {
    position: relative;
}

.mpr-support-avatar img {
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .16);
    display: block;
    height: 62px;
    object-fit: cover;
    width: 62px;
}

.mpr-support-avatar span {
    background: #003a66;
    border: 3px solid #fff;
    border-radius: 50%;
    bottom: 3px;
    height: 16px;
    position: absolute;
    right: 3px;
    width: 16px;
}

.mpr-support-kicker {
    color: #003a66;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.mpr-support-card h3 {
    color: #111827;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.18;
    margin: 0;
}

.mpr-support-card p {
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.5;
    margin: .45rem 0 0;
}

.mpr-support-actions {
    display: grid;
    gap: 10px;
}

.mpr-support-primary,
.mpr-support-secondary {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-weight: 850;
    gap: .55rem;
    justify-content: center;
    min-height: 50px;
    text-decoration: none;
    transition: .2s;
}

.mpr-support-primary {
    background: #003a66;
    border: 1px solid #003a66;
    color: #fff !important;
}

.mpr-support-primary:hover {
    background: #004f8c;
    color: #fff !important;
    transform: translateY(-1px);
}

.mpr-support-secondary {
    background: #f8fafc;
    border: 1px solid #dfe5ee;
    color: #111827 !important;
}

.mpr-support-contact-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpr-support-contact-grid a {
    background: #f8fafc;
    border: 1px solid #e2e7ef;
    border-radius: 12px;
    display: block;
    min-width: 0;
    padding: .8rem;
    text-decoration: none;
}

.mpr-support-contact-grid a:hover {
    border-color: #003a66;
}

.mpr-support-contact-grid span {
    color: #6b7280;
    display: block;
    font-size: .76rem;
    font-weight: 800;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.mpr-support-contact-grid strong {
    color: #111827;
    display: block;
    font-size: .9rem;
    overflow-wrap: anywhere;
}

.mpr-support-trust {
    align-items: center;
    border-top: 1px solid #e2e7ef;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding-top: 16px;
}

.mpr-support-trust strong,
.mpr-support-trust span {
    display: block;
}

.mpr-support-trust strong {
    color: #111827;
    font-size: .96rem;
}

.mpr-support-trust span {
    color: #6b7280;
    font-size: .82rem;
    margin-top: .2rem;
}

.mpr-support-trust img {
    display: block;
    height: auto;
    max-width: 118px;
}

.mpt-tour-contact-sidebar {
    align-self: flex-start;
}

.mpt-tour-contact-sidebar-inner {
    position: sticky;
    top: 24px;
}

.mpr-company-contact {
    border-top: 1px solid #e2e7ef;
    display: grid;
    gap: 8px;
    padding-top: 18px;
}

.mpr-company-contact h4 {
    color: #111827;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .04em;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.mpr-company-contact-row {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e7ef;
    border-radius: 12px;
    color: #111827 !important;
    display: grid;
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 58px;
    padding: 10px 12px;
    text-decoration: none !important;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.mpr-company-contact-row:hover {
    background: #fff;
    border-color: #003a66;
    transform: translateY(-1px);
}

.mpr-company-contact-row > i {
    align-items: center;
    background: #eaf3ec;
    border-radius: 999px;
    color: #003a66;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.mpr-company-contact-row span,
.mpr-company-contact-row small,
.mpr-company-contact-row strong {
    display: block;
    min-width: 0;
}

.mpr-company-contact-row small {
    color: #6b7280;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.mpr-company-contact-row strong {
    color: #111827;
    font-size: .88rem;
    font-weight: 850;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.mpr-company-legal {
    background: #eff6f1;
    border: 1px solid #d5e5d9;
    border-radius: 12px;
    color: #374151;
    padding: 14px;
}

.mpr-company-legal strong,
.mpr-company-legal span {
    display: block;
}

.mpr-company-legal strong {
    color: #004f8c;
    font-size: .86rem;
    line-height: 1.35;
}

.mpr-company-legal span {
    font-size: .8rem;
    margin-top: 4px;
}

.main-content > .container > .row {
    align-items: flex-start;
}
/* Single Tour: Section Headers */
.mpt-section-header {
    margin-bottom: 2rem;
}

.mpt-section-header .eyebrow-text {
    color: #f97316;
    display: inline-block;
    font-family: var(--wp--preset--font-family--inter), sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding-left: 32px;
    position: relative;
    text-transform: uppercase;
}

.mpt-section-header .eyebrow-text::before {
    background-color: #f97316;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
}

.mpt-section-header.text-center .eyebrow-text {
    padding-left: 0;
}

.mpt-section-header.text-center .eyebrow-text::before {
    display: none;
}

.mpt-section-header .title-tour-easy {
    color: #111827 !important;
    font-family: var(--wp--preset--font-family--inter), sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

/* Single Tour: Related Tours Slider */
.related-tours-swiper {
    margin: -20px 0 -50px;
    padding: 20px 40px 50px;
    position: relative;
}

.related-tours-outer-container .swiper-nav-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #004f8c;
    display: flex;
    height: 44px;
    justify-content: center;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    width: 44px;
    z-index: 10;
}

.related-tours-outer-container .swiper-nav-btn::after {
    display: none;
}

.related-tours-outer-container .swiper-nav-btn:hover {
    background: #004f8c;
    box-shadow: 0 10px 20px rgba(0, 166, 79, .2) !important;
    color: #fff;
    transform: scale(1.1);
}

.related-tours-outer-container .swiper-button-prev {
    left: -15px;
}

.related-tours-outer-container .swiper-button-next {
    right: -15px;
}

.related-tours-swiper::before,
.related-tours-swiper::after {
    bottom: 0;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 120px;
    z-index: 5;
}

.related-tours-swiper::before {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    left: 0;
}

.related-tours-swiper::after {
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
}

.related-tours-swiper .swiper-pagination-bullet {
    background: #ccc;
    height: 10px;
    transition: all .3s ease;
    width: 10px;
}

.related-tours-swiper .swiper-pagination-bullet-active {
    background: #004f8c;
    border-radius: 5px;
    width: 24px;
}

/* Single Tour: Why Agency Card */
.mpt-why-agency-card {
    background: #fff;
    border: 1px solid #e2e7ef;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
    padding: 28px;
}

.mpt-why-agency-card h3 {
    color: #06265e;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 22px;
}

.mpt-why-agency-card ul {
    display: grid;
    gap: 18px;
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.mpt-why-agency-card li {
    align-items: flex-start;
    color: #111827;
    display: grid;
    font-size: 1rem;
    gap: 14px;
    grid-template-columns: 28px minmax(0, 1fr);
    line-height: 1.35;
}

.mpt-why-agency-card li i {
    color: #009b72;
    font-size: 1.35rem;
    line-height: 1.25;
    text-align: center;
}

.mpt-why-agency-tripadvisor {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e7ef;
    border-radius: 14px;
    color: #111827;
    display: flex;
    font-size: .92rem;
    gap: 10px;
    justify-content: center;
    min-height: 54px;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
}

.mpt-why-agency-tripadvisor:hover {
    color: #111827;
    text-decoration: none;
}

.mpt-why-tripadvisor-brand {
    align-items: center;
    display: inline-flex;
    gap: 6px;
}

.mpt-why-tripadvisor-brand strong {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.mpt-why-tripadvisor-brand svg {
    color: #111827;
    flex: 0 0 auto;
    height: 18px;
    width: 18px;
}

.mpt-why-tripadvisor-rating {
    display: inline-flex;
    gap: 3px;
}

.mpt-why-tripadvisor-rating span {
    background: #00aa6c;
    border: 1px solid #00aa6c;
    border-radius: 999px;
    display: block;
    height: 9px;
    width: 9px;
}

.mpt-why-tripadvisor-reviews {
    color: #64748b;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

/* Single Tour: Feature Cards */
.mpt-tour-feature-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    min-height: 400px;
    overflow: hidden;
    position: relative;
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
}

.mpt-tour-feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    transform: translateY(-8px);
}

.mpt-tour-feature-img-wrap {
    inset: 0;
    position: absolute;
    z-index: 1;
}

.mpt-tour-feature-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.25, .8, .25, 1);
    width: 100%;
}

.mpt-tour-feature-card:hover img {
    transform: scale(1.1);
}

.mpt-tour-feature-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: flex-end;
    padding: 2.5rem 2rem;
    position: absolute;
    transition: background .5s ease;
    z-index: 2;
}

.mpt-tour-feature-card:hover .mpt-tour-feature-overlay {
    background: linear-gradient(to top, rgba(0, 166, 79, .95) 0%, rgba(0, 0, 0, .4) 60%, rgba(0, 0, 0, 0) 100%);
}

.mpt-tour-feature-content {
    transform: translateY(20px);
    transition: transform .5s cubic-bezier(.25, .8, .25, 1);
}

.mpt-tour-feature-card:hover .mpt-tour-feature-content {
    transform: translateY(0);
}

.mpt-tour-feature-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

.mpt-tour-feature-content h4 a {
    color: #fff;
    text-decoration: none;
}

.mpt-tour-feature-content p {
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .4s ease, max-height .4s ease, margin .4s ease;
}

.mpt-tour-feature-card:hover .mpt-tour-feature-content p {
    margin-bottom: 1.5rem;
    max-height: 150px;
    opacity: 1;
}

.mpt-tour-feature-readmore {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: .8;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity .3s ease;
}

.mpt-tour-feature-card:hover .mpt-tour-feature-readmore {
    opacity: 1;
}

.mpt-tour-feature-readmore i {
    margin-left: 8px;
    transition: transform .3s ease;
}

.mpt-tour-feature-card:hover .mpt-tour-feature-readmore i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .mpt-section-header .title-tour-easy {
        font-size: 26px !important;
    }
}




    @media (max-width: 575.98px) {
        .mpr-offer-card {
            border-radius: 20px;
            padding: 30px 20px 24px;
        }

        .mpr-offer-badge {
            font-size: 0.86rem;
            left: 20px;
        }

        .mpr-offer-price {
            font-size: 2rem;
        }

        .mpr-offer-primary,
        .mpr-offer-secondary {
            font-size: 1rem;
            min-height: 58px;
        }

        .mpr-offer-total {
            align-items: flex-start;
            flex-direction: column;
        }

        .mpr-support-head,
        .mpr-support-contact-grid {
            grid-template-columns: 1fr;
        }

        .mpr-support-trust {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media (max-width: 991.98px) {
        .mpt-tour-contact-sidebar {
            margin-top: 28px;
        }

        .mpt-tour-contact-sidebar-inner {
            position: static;
        }
    }
/* Premium Tour Card Redesign */
.mpt-premium-tour-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #E5E7EB;
    font-family: var(--wp--preset--font-family--inter), sans-serif;
}
.mpt-premium-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0,0,0,0.03) !important;
    border-color: transparent;
}
.mpt-premium-tour-card .card-image-wrapper {
    aspect-ratio: 4/3;
    background-color: #f3f4f6;
}
.mpt-premium-tour-card .tour-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mpt-premium-tour-card:hover .tour-img {
    transform: scale(1.08);
}
.mpt-premium-tour-card .btn-view-tour {
    background-color: #004f8c !important;
    border: none !important;
    color: white !important;
}
.mpt-premium-tour-card .btn-view-tour:hover {
    background-color: #004f8c !important;
    box-shadow: 0 4px 12px rgba(0, 166, 79, 0.25) !important;
}
.mpt-premium-tour-card .icon-anim {
    transition: transform 0.3s ease;
}
.mpt-premium-tour-card .btn-view-tour:hover .icon-anim {
    transform: translateX(4px);
}
.mpt-premium-tour-card .card-title a {
    transition: color 0.2s ease;
}
.mpt-premium-tour-card .card-title a:hover {
    color: #004f8c !important;
}

/* Compact Premium Tour Card overrides */
.mpt-premium-tour-card.compact-card {
    height: auto !important; 
    min-height: 340px; 
}
.mpt-premium-tour-card.compact-card .card-image-wrapper {
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}
.mpt-premium-tour-card .hover-slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.mpt-premium-tour-card .hover-slide-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Replaced with JS hover fader */
.mpt-premium-tour-card .hover-slider-dots {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mpt-premium-tour-card:hover .hover-slider-dots {
    opacity: 1;
}
.mpt-premium-tour-card .hover-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
}
.mpt-premium-tour-card .hover-dot.active {
    background-color: #ffffff;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.mpt-premium-tour-card .title-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 65%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}
.mpt-premium-tour-card .card-title a:hover {
    color: #F97316 !important;
}

.mpt-premium-tour-card .tour-quick-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mpt-premium-tour-card .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #4b5563;
    font-weight: 500;
}
.mpt-premium-tour-card .detail-item i {
    color: #004f8c;
    width: 14px;
    text-align: center;
    font-size: 0.9rem;
}

/* View Tour Button Animation */
.mpt-premium-tour-card .btn-view-tour .icon-anim {
    transition: transform 0.3s ease;
}
.mpt-premium-tour-card .btn-view-tour:hover .icon-anim {
    transform: translateX(5px);
}

/* Premium Tour Card Hover Effects */
.mpt-premium-tour-card:hover {
    border-color: rgba(0, 170, 108, 0.6) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-4px);
}
.mpt-premium-tour-card:hover .tour-img {
    transform: scale(1.08);
    filter: saturate(1.3) contrast(1.1);
}

/* ================================================
   MEGA MENU — Estilos completos
   ================================================ */

/* El <li> del menú NO necesita position, debe ser static para que 
   el megamenú absolute tome como referencia el <nav> principal */
.mth-has-mega {
    position: static;
}

/* Caja del megamenú — absolute para que acompañe el scroll del nav */
.mpt-mega {
    position: absolute;
    top: 100%; /* Justo debajo del nav */
    margin-top: 10px; /* 10px de separación */
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 48px);
    max-width: 1320px;
    background: #ffffff;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(30px); /* Inicia 30px más abajo */
    /* overflow va en el div interno para no recortar el puente */
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.4s;
    z-index: 9999;
}

/* Activar megamenú al hacer hover */
.mth-has-mega:hover > .mpt-mega,
.mth-has-mega:focus-within > .mpt-mega,
.mth-has-mega.mth-mega-open > .mpt-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0); /* Sube a su posición original */
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0s;
}

/* Puente invisible — cubre EXACTAMENTE el gap entre el link y el panel.
   Reducido de 40px a 15px para que no superponga a otros links del nav.
   (Es parte de .mpt-mega pero como es hijo de .mth-has-mega, el hover se mantiene) */
.mpt-mega::before {
    content: "";
    display: block;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

/* Grid de 2 columnas: aside izquierda + section derecha */
/* overflow: hidden va aquí para respetar el border-radius y no recortar el puente */
.mpt-mega > div {
    display: grid;
    grid-template-columns: 390px 1fr;
    min-height: 460px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

/* ── ASIDE (columna izquierda con imagen) ── */
.mpt-mega aside {
    position: relative;
    padding: 42px 34px;
    color: #ffffff;
    background: #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    min-height: 460px;
}

.mpt-mega aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.10), rgba(31, 41, 55, 0.72));
    z-index: 1;
}

.mpt-mega aside .mpt-mega-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.mpt-mega .mpt-aside-content {
    position: relative;
    z-index: 2;
}

.mpt-mega aside span {
    display: inline-flex;
    width: fit-content;
    background: #004f8c;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 14px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    border-radius: 999px;
}

.mpt-mega aside h2 {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 12px;
    font-weight: 800;
}

.mpt-mega aside p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

/* ── SECTION (columna derecha con links) ── */
.mpt-mega section {
    padding: 38px;
    background: radial-gradient(circle at top right, rgba(96, 179, 88, 0.10), transparent 32%), #ffffff;
    overflow-y: auto;
}

.mpt-mega section h2 {
    color: #1f2937;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
    font-weight: 800;
}

.mpt-mega section > p {
    color: #7a8290;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    max-width: 720px;
}

.mpt-mega section hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 22px 0 26px;
    opacity: 1;
}

/* Grid de artículos dentro de section */
.mpt-mega section > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

/* Si hay 3 elementos o más, ocupa 3 columnas */
.mpt-mega section > div:has(> :nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
}

.mpt-mega article h3 {
    color: #1f2937;
    font-size: 15px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 800;
}

.mpt-mega article ul {
    list-style: none;
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
}

.mpt-mega article li {
    position: relative;
    padding-left: 20px;
}

.mpt-mega article li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ffffff;
    border: 1px solid #004f8c;
    position: absolute;
    left: 0;
    top: 19px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mpt-mega article li:hover::before {
    background: #004f8c;
    border-color: #004f8c;
    transform: scale(1.12);
}

.mpt-mega article a {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    display: block;
    padding: 12px 0;
    border-bottom: 1px dotted #cfd5dd;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.mpt-mega article a::before,
.mpt-mega article a::after {
    display: none !important;
}

.mpt-mega article a:hover {
    color: #004f8c !important;
    border-bottom-color: #004f8c;
}

/* ── FOOTER dentro de section ── */
.mpt-mega footer {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.mpt-mega footer > span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

.mpt-mega footer a {
    background: #004f8c !important;
    color: #ffffff !important;
    text-decoration: none;
    padding: 13px 20px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border: none !important;
}

.mpt-mega footer a span {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.mpt-mega footer a span:last-child {
    display: inline-block;
    transition: transform 0.25s ease;
}

.mpt-mega footer a:hover {
    background: #004f8c !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(96, 179, 88, 0.25);
}

.mpt-mega footer a:hover span:last-child {
    transform: translateX(5px);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .mpt-mega {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        display: none; /* El menú móvil usa el accordion, no este */
    }
}






.mpt-adventure-v2__panel {
    --mpt-ink: #15221c;
    --mpt-muted: #657169;
    --mpt-orange: #faab2c;
    --mpt-tour-blue: #125b8a;
    --mpt-line: rgba(21, 34, 28, .1);
    --mpt-shadow: 0 22px 60px rgba(18, 30, 24, .08);
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(21, 34, 28, .08);
    box-shadow: var(--mpt-shadow);
    padding: clamp(22px, 4vw, 42px);
    position: relative;
}

.mpt-adventure-v2__panel::before {
    background: linear-gradient(90deg, var(--mpt-orange), #2f6b4f);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.mpt-adventure-v2__panel > .row {
    align-items: stretch;
    row-gap: 1.5rem;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 {
    display: flex;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > span {
    color: var(--mpt-tour-blue);
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: .65rem;
    text-transform: uppercase;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > p {
    color: var(--mpt-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 24px;
    max-width: 760px;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article {
    background-position: center;
    background-size: cover;
    flex: 1 1 auto;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article {
    min-height: 520px;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article::after {
    background: linear-gradient(180deg, rgba(21, 34, 28, .12), rgba(21, 34, 28, .82));
    content: "";
    inset: 0;
    position: absolute;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article > div {
    bottom: 0;
    color: #fff;
    left: 0;
    padding: clamp(24px, 4vw, 36px);
    position: absolute;
    right: 0;
    z-index: 2;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article > div > span {
    background: rgba(255, 255, 255, .94);
    color: var(--mpt-orange);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    margin-bottom: 14px;
    padding: 8px 12px;
    text-transform: uppercase;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 950;
    line-height: .98;
    margin: 0 0 14px;
    max-width: 520px;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article p {
    color: rgba(255, 255, 255, .84);
    font-size: .98rem;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav {
    background: #fff;
    border: 0;
    column-gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a {
    align-items: center;
    background: transparent;
    border-bottom: 1px solid var(--mpt-line);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    color: var(--mpt-ink);
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto;
    padding: 12px 14px 12px 0;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a span {
    color: var(--mpt-tour-blue);
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 3px;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a h3 {
    color: var(--mpt-tour-blue);
    font-size: .92rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 3px;
    transition: color .25s ease;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a p {
    color: var(--mpt-muted);
    font-size: .8rem;
    line-height: 1.4;
    margin: 0;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a i {
    align-items: center;
    background: transparent;
    border: 0;
    color: #97a09a;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.2rem;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    transition: color .25s ease, transform .25s ease;
    width: 24px;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a:hover {
    background: transparent;
    border-bottom-color: var(--mpt-orange);
    color: var(--mpt-ink);
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a:hover h3 {
    color: var(--mpt-orange);
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a:hover i {
    color: var(--mpt-orange);
    transform: translateX(6px);
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > a {
    align-items: center;
    background: var(--mpt-ink);
    border: 1px solid var(--mpt-ink);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 800;
    justify-content: center;
    margin-top: 24px;
    min-height: 48px;
    padding: 0 24px;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
    white-space: nowrap;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > a:hover {
    background: var(--mpt-orange);
    border-color: var(--mpt-orange);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .mpt-adventure-v2__panel > .row > .col-lg-4 article {
        min-height: 380px;
    }

    .mpt-adventure-v2__panel > .row > .col-lg-8 > nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a {
        grid-template-columns: 1fr;
        padding: 11px 12px 11px 0;
    }

    .mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a i {
        display: none;
    }
}

/* Global Elegant Tables */
body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) {
    background: #fff;
    border: 1px solid #e3ebf2;
    border-collapse: separate;
    border-radius: 8px;
    border-spacing: 0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 1.35rem 0;
    overflow: hidden;
    width: 100%;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) caption {
    caption-side: top;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-align: left;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) thead th,
body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) tr:first-child th {
    background: #004f8c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    padding: 15px 16px;
    text-transform: uppercase;
    vertical-align: middle;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) tbody th {
    background: #f3f7fa;
    color: #0f172a;
    font-weight: 800;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) td,
body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) th {
    border: 0;
    border-bottom: 1px solid #e8eef4;
    padding: 14px 16px;
    vertical-align: top;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) td + td,
body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) th + th {
    border-left: 1px solid #edf2f7;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) tbody tr:nth-child(even) {
    background: #f8fafc;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) tbody tr {
    transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) tbody tr:hover {
    background: #edf6fc;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) tr:last-child td,
body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) tr:last-child th {
    border-bottom: 0;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) a {
    color: #004f8c;
    font-weight: 700;
    text-decoration: none;
}

body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) a:hover {
    color: #0f766e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 767px) {
    body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) {
        display: block;
        font-size: 0.9rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) td,
    body table:not(.ui-datepicker-calendar):not(.tribe-events-calendar):not(.shop_table) th {
        min-width: 140px;
        padding: 12px 14px;
    }
}

/* Page format headings: keep general-page H2s compact and editorial. */
.mpt-contact-page .mpt-section-title,
.mpt-contact-page .mpt-experience-title,
.mpt-claim-book-page .mpt-claim-book-title,
.mpt-work-page .mpt-work-title,
.mpt-client-reviews .mpt-client-reviews__title,
.mpt-esnna-page .mpt-esnna-heading,
.pat-about-page .pat-section-title,
.pat-cert-page .pat-cert-title,
.pat-cert-page .pat-cert-cta h2,
.pat-privacy-page h2,
.mpt-basic-page h2 {
    font-size: clamp(1.15rem, 2.2vw, 2rem) !important;
    line-height: 1.14 !important;
}

@media (max-width: 575.98px) {
    .mpt-contact-page .mpt-section-title,
    .mpt-contact-page .mpt-experience-title,
    .mpt-claim-book-page .mpt-claim-book-title,
    .mpt-work-page .mpt-work-title,
    .mpt-client-reviews .mpt-client-reviews__title,
    .mpt-esnna-page .mpt-esnna-heading,
    .pat-about-page .pat-section-title,
    .pat-cert-page .pat-cert-title,
    .pat-cert-page .pat-cert-cta h2,
    .pat-privacy-page h2,
    .mpt-basic-page h2 {
        font-size: clamp(1.05rem, 6vw, 1.55rem) !important;
    }
}

/* Compatibility: pasted megamenu snippets start at <div class="row">.
   The PHP wrapper adds .mpt-adventure-v2__panel, so neutralize the old
   .mpt-mega > div grid layout when this panel is used. */
.mpt-mega > .mpt-adventure-v2__panel {
    display: block;
    grid-template-columns: none;
    min-height: 0;
    overflow: hidden;
}

/* Compatibility: pasted megamenu snippets start at <div class="row">.
   The PHP wrapper adds .mpt-adventure-v2__panel, so neutralize the old
   .mpt-mega > div grid layout when this panel is used. */
.mpt-mega > .mpt-adventure-v2__panel {
    display: block;
    grid-template-columns: none;
    min-height: 0;
    overflow: hidden;
}

.mpt-adventure-v2__panel {
    --mpt-ink: #15221c;
    --mpt-muted: #657169;
    --mpt-orange: #faab2c;
    --mpt-tour-blue: #125b8a;
    --mpt-line: rgba(21, 34, 28, .1);
    --mpt-shadow: 0 22px 60px rgba(18, 30, 24, .08);
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(21, 34, 28, .08);
    box-shadow: var(--mpt-shadow);
    padding: clamp(22px, 4vw, 42px);
    position: relative;
}

.mpt-adventure-v2__panel::before {
    background: linear-gradient(90deg, var(--mpt-orange), #2f6b4f);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.mpt-adventure-v2__panel > .row {
    align-items: stretch;
    row-gap: 1.5rem;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 {
    display: flex;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > span {
    color: var(--mpt-tour-blue);
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: .65rem;
    text-transform: uppercase;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > p {
    color: var(--mpt-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 24px;
    max-width: 760px;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article {
    background-position: center;
    background-size: cover;
    flex: 1 1 auto;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article {
    min-height: 520px;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article::after {
    background: linear-gradient(180deg, rgba(21, 34, 28, .12), rgba(21, 34, 28, .82));
    content: "";
    inset: 0;
    position: absolute;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article > div {
    bottom: 0;
    color: #fff;
    left: 0;
    padding: clamp(24px, 4vw, 36px);
    position: absolute;
    right: 0;
    z-index: 2;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article > div > span {
    background: rgba(255, 255, 255, .94);
    color: var(--mpt-orange);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    margin-bottom: 14px;
    padding: 8px 12px;
    text-transform: uppercase;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 950;
    line-height: .98;
    margin: 0 0 14px;
    max-width: 520px;
}

.mpt-adventure-v2__panel > .row > .col-lg-4 article p {
    color: rgba(255, 255, 255, .84);
    font-size: .98rem;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav {
    background: #fff;
    border: 0;
    column-gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a {
    align-items: center;
    background: transparent;
    border-bottom: 1px solid var(--mpt-line);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    color: var(--mpt-ink);
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto;
    padding: 12px 14px 12px 0;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a span {
    color: var(--mpt-tour-blue);
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 3px;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a h3 {
    color: var(--mpt-tour-blue);
    font-size: .92rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 3px;
    transition: color .25s ease;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a p {
    color: var(--mpt-muted);
    font-size: .8rem;
    line-height: 1.4;
    margin: 0;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a i {
    align-items: center;
    background: transparent;
    border: 0;
    color: #97a09a;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.2rem;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    transition: color .25s ease, transform .25s ease;
    width: 24px;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a:hover {
    background: transparent;
    border-bottom-color: var(--mpt-orange);
    color: var(--mpt-ink);
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a:hover h3 {
    color: var(--mpt-orange);
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a:hover i {
    color: var(--mpt-orange);
    transform: translateX(6px);
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > a {
    align-items: center;
    background: var(--mpt-ink);
    border: 1px solid var(--mpt-ink);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 800;
    justify-content: center;
    margin-top: 24px;
    min-height: 48px;
    padding: 0 24px;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
    white-space: nowrap;
}

.mpt-adventure-v2__panel > .row > .col-lg-8 > a:hover {
    background: var(--mpt-orange);
    border-color: var(--mpt-orange);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .mpt-adventure-v2__panel > .row > .col-lg-4 article {
        min-height: 380px;
    }

    .mpt-adventure-v2__panel > .row > .col-lg-8 > nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a {
        grid-template-columns: 1fr;
        padding: 11px 12px 11px 0;
    }

    .mpt-adventure-v2__panel > .row > .col-lg-8 > nav > a i {
        display: none;
    }
}
