.ntp-hdr { position: relative !important; box-shadow: none; border-bottom: 1px solid #EAEAEA; }

        /* STICKY NAV STYLES */
        .ntp-sticky-nav {
            position: fixed;
            top: 0 !important;
            /* Force top */
            left: 0;
            width: 100%;
            background: #fff;
            z-index: 999999;
            /* Supersede everything */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            display: none;
            /* JS will show it */
            border-bottom: 1px solid #eee;
        }

        .ntp-sticky-nav.visible {
            transform: translateY(0);
            display: block;
        }

        .ntp-sticky-top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
            border-bottom: 1px solid #f1f5f9;
        }

        .ntp-sticky-bottom-row {
            background: #fff;
            height: 50px;
            box-shadow: inset 0 1px 0 #f1f5f9;
        }

        /* LEFT SIDE */
        .ntp-sticky-left {
            display: flex;
            align-items: center;
            min-width: 0;
            /* Allows title to shrink and truncate */
            flex: 1;
            /* Takes up available space */
        }

        .ntp-sticky-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1e293b;
            text-transform: uppercase;
            margin-right: 15px;
            letter-spacing: -0.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: 'Montserrat', sans-serif !important;
        }

        .ntp-sticky-rating {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #64748b;
            background: #f8fafc;
            padding: 4px 10px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .ntp-stars {
            color: #ffb400;
            font-weight: 700;
        }

        /* CENTER NAV */
        .ntp-sticky-center {
            display: flex;
            gap: 30px;
            height: 100%;
            align-items: center;
            overflow-x: auto;
            scrollbar-width: none;
            /* Firefox */
            -webkit-overflow-scrolling: touch;
        }

        .ntp-sticky-center::-webkit-scrollbar {
            display: none;
        }

        .ntp-sticky-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #64748b;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            letter-spacing: 0.5px;
            white-space: nowrap;
            padding: 0 5px;
        }

        .ntp-sticky-link .ntp-icon {
            font-size: 1.15rem;
            margin-bottom: 2px;
        }

        .ntp-sticky-link:hover,
        .ntp-sticky-link.active {
            color: #f0624d;
            border-bottom-color: #f0624d;
        }

        .ntp-sticky-link.active {
            transform: scale(1.05);
            /* Modern Pop effect */
            text-shadow: 0 2px 10px rgba(240, 98, 77, 0.2);
        }

        .ntp-sticky-link.active .ntp-icon {
            color: #f0624d;
            transform: scale(1.1);
            transition: transform 0.3s;
        }

        /* RIGHT SIDE */
        .ntp-sticky-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* --- Premium Custom CTA Block --- */
        .ntp-designer-block {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 8px 24px 8px 8px;
            /* Extra padding on right for a pill look */
            border-radius: 50px;
            text-align: left;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .ntp-designer-block:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border-color: #cbd5e1;
        }

        .ntp-designer-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid transparent;
            /* Prepare for gradient ring */
            background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #f0624d, #d84b38) border-box;
            box-shadow: 0 2px 8px rgba(240, 98, 77, 0.2);
            transition: transform 0.3s ease;
        }

        .ntp-designer-block:hover .ntp-designer-avatar {
            transform: scale(1.05);
        }

        .ntp-designer-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1.1;
        }

        .ntp-designer-ask {
            font-size: 0.75rem;
            color: #64748b;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .ntp-designer-phone {
            font-family: var(--ntp-font-head);
            font-size: 1.15rem;
            font-weight: 800;
            color: #1e293b;
            text-decoration: none;
            letter-spacing: -0.2px;
            transition: color 0.2s;
            margin-bottom: 2px;
        }

        .ntp-designer-block:hover .ntp-designer-phone {
            color: #f0624d;
        }

        .ntp-designer-title {
            font-size: 0.65rem;
            color: #f0624d;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        /* --- Integrated Sleek Top Nav CTA --- */
        .ntp-nav-cta-text {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #f0624d;
            /* Brand primary */
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .ntp-nav-cta-text::after {
            content: '';
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #f0624d;
            transition: width 0.3s ease;
        }

        .ntp-nav-cta-text i {
            transition: transform 0.3s ease;
        }

        .ntp-nav-cta-text:hover {
            color: #d84b38;
        }

        .ntp-nav-cta-text:hover::after {
            width: 100%;
        }

        .ntp-nav-cta-text:hover i {
            transform: translateX(3px);
            color: #d84b38;
        }

        /* Hide rating between 769px–1200px (tablets) */
        @media (min-width: 769px) and (max-width: 1200px) {
            .ntp-sticky-rating {
                display: none;
            }
        }

        /* Hide title between 769px–1024px (tablets) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .ntp-sticky-title {
                display: none;
            }
        }

        /* ===== MOBILE STICKY BAR — compact UX ===== */
        @media (max-width: 768px) {

            .ntp-sticky-top-row {
                padding: 8px 14px;
                gap: 8px;
                min-height: 0;
                height: auto;
                border-bottom: none;
            }

            /* Left side stacks vertically */
            .ntp-sticky-left {
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
                min-width: 0;
                flex: 1;
                overflow: hidden;
            }

            /* Trek title — small, bold, truncated */
            .ntp-sticky-title {
                display: block !important;
                font-size: 0.72rem !important;
                font-weight: 800;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 100%;
                margin-right: 0;
                letter-spacing: 0;
            }

            /* Rating pill — slim */
            .ntp-sticky-rating {
                display: inline-flex !important;
                font-size: 0.68rem;
                padding: 2px 7px;
                gap: 5px;
            }

            .ntp-stars {
                font-size: 0.68rem;
            }

            .ntp-reviews-count {
                font-size: 0.68rem;
            }

            /* Right side */
            .ntp-sticky-right {
                gap: 8px;
                flex-shrink: 0;
                align-items: center;
            }

            /* Price: compact */
            .ntp-sticky-price {
                align-items: flex-end;
                gap: 1px;
            }

            .ntp-sticky-from {
                font-size: 0.55rem;
                letter-spacing: 0.05em;
            }

            .ntp-sticky-price .ntp-val {
                font-size: 0.95rem;
                line-height: 1.1;
            }

            /* Designer Block: compact mobile */
            .ntp-designer-block {
                padding: 4px 12px 4px 4px;
                /* Tighter pill */
                gap: 8px;
            }

            .ntp-designer-avatar {
                display: block;
                width: 36px;
                height: 36px;
                border: 1px solid transparent;
            }

            .ntp-designer-text {
                align-items: flex-start;
                /* Align left next to the icon */
            }

            .ntp-designer-ask {
                display: none;
                /* Hide top text */
            }

            .ntp-designer-phone {
                font-size: 0.90rem;
            }

            .ntp-designer-title {
                font-size: 0.55rem;
                letter-spacing: 0.5px;
            }

            /* --- Bottom nav row: smaller to prevent overflow --- */
            .ntp-sticky-link {
                font-size: 0.68rem;
                gap: 4px;
                letter-spacing: 0.3px;
                padding: 0 3px;
            }

            .ntp-sticky-link .ntp-icon {
                font-size: 0.95rem;
            }

            .ntp-sticky-center {
                gap: 14px;
                padding: 0 12px;
            }

            .ntp-sticky-nav {
                top: 0 !important;
            }

            .ntp-sticky-nav {
                top: 0 !important;
            }
        }
    

        /* GLOBAL DESIGN TOKENS */
        :root {
            --ntp-primary: #0088cc;
            /* Deep Blue - Action */
            --ntp-primary-hover: #006699;
            --ntp-accent: #65e6d6;
            /* Mint - Highlight */
            --ntp-text: #1e293b;
            /* Slate 800 - Body */
            --ntp-text-light: #64748b;
            /* Slate 500 - Meta */
            --ntp-font-head: 'Merriweather', serif;
            --ntp-font-body: 'Inter', sans-serif;
            --ntp-radius: 12px;
        }

        /* Modern Reset & Typography */
        .ntp-hero-wrapper {
            max-width: 1280px;
            margin: 40px auto;
            padding: 0 20px;
            font-family: var(--ntp-font-body);
            color: var(--ntp-text);
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--ntp-text);
            margin-top: 0;
        }

        h1,
        h2 {
            font-family: var(--ntp-font-head);
        }

        h3,
        h4 {
            font-family: var(--ntp-font-body);
            letter-spacing: -0.02em;
        }

        p {
            font-size: 18px;
            /* Standardize Body */
            line-height: 1.6;
            font-weight: 400;
            color: #334155;
            margin-bottom: 24px;
        }

        @media(max-width: 768px) {
            p {
                font-size: 16px;
            }
        }

        /* HEADER SECTION */
        .ntp-header-top {
            margin-bottom: 25px;
        }

        .ntp-breadcrumbs {
            font-size: 0.85rem;
            color: #d35400;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .ntp-breadcrumbs a {
            color: #d35400;
            text-decoration: none;
            transition: color 0.2s;
        }

        .ntp-breadcrumbs a:hover {
            color: #e67e22;
            text-decoration: underline;
        }

        .ntp-hero-title {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.1;
            margin: 0 0 15px 0;
            color: #1a1a1a;
            letter-spacing: -1px;
        }

        .ntp-meta-row {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 0.95rem;
            color: #555;
            flex-wrap: wrap;
        }

        .ntp-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .ntp-star {
            color: #f39c12;
        }

        .ntp-reviews {
            font-weight: 400;
            color: #666;
            margin-left: 2px;
        }

        .ntp-location {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
        }

        /* GRID LAYOUT (Desktop: 16:9 Aspect Ratios) */
        .ntp-hero-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 12px;
            height: 600px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        /* Left Column (Main Image) */
        .ntp-grid-left {
            position: relative;
            height: 100%;
        }

        /* Right Column (Stacked Images) */
        .ntp-grid-right {
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: 100%;
        }

        .ntp-img-box {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .ntp-img-box:hover {
            transform: scale(1.02);
            z-index: 2;
        }

        /* Photo Tour Badge */
        .ntp-photo-badge {
            position: absolute;
            top: 25px;
            left: 25px;
            background: rgba(30, 41, 59, 0.85);
            color: #fff;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
            pointer-events: none;
        }

        /* Show All Photos Button */
        .ntp-show-photos-btn {
            position: absolute;
            bottom: 25px;
            right: 25px;
            background: #fff;
            color: #1a1a1a;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            z-index: 10;
        }

        .ntp-show-photos-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        /* MOBILE RESPONSIVE */
        @media(max-width: 768px) {

            .ntp-hero-wrapper,
            .ntp-container {
                margin: 20px auto;
                padding: 0 30px;
            }

            .ntp-hero-title {
                font-size: 2.4rem;
                line-height: 1.1;
                margin-bottom: 20px;
            }

            .ntp-hero-grid {
                grid-template-columns: 1fr;
                height: auto;
                aspect-ratio: auto;
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .ntp-grid-left {
                height: 250px;
                width: 100%;
            }

            .ntp-grid-left .ntp-img-box {
                border-radius: 12px;
            }

            .ntp-grid-right {
                display: flex;
                flex-direction: row;
                height: 140px;
                width: 100%;
                gap: 10px;
            }

            .ntp-grid-right .ntp-img-box {
                flex: 1;
                border-radius: 12px;
            }

            .ntp-photo-badge {
                top: 15px;
                left: 15px;
                padding: 6px 12px;
                font-size: 0.75rem;
            }

            .ntp-show-photos-btn {
                bottom: 10px;
                right: 10px;
                padding: 8px 14px;
                font-size: 0.8rem;
                background: rgba(255, 255, 255, 0.95);
            }
        }
    

                /* DYNAMIC ITINERARY LAYOUT - BALANCED (50/50) */
                .ntp-dynamic-wrapper {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    /* Equal Width */
                    gap: 30px;
                    /* Reduced Gap */
                    margin-bottom: 80px;
                    align-items: start;
                    font-family: 'Inter', sans-serif;
                }

                /* LEFT: ALTITUDE PROFILE CARD (White Mode) */
                .ntp-alt-card {
                    background: #ffffff;
                    /* White */
                    border-radius: 20px;
                    padding: 30px;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                    /* Soft Clean Shadow */
                    border: none;
                    /* Removed Border for Clean "Board" Look */

                    /* STICKY RESTORED (Desktop) */
                    position: -webkit-sticky;
                    position: sticky;
                    top: 100px;
                    z-index: 20;
                    align-self: start;

                    color: #1e293b;
                }

                .ntp-section {
                    scroll-margin-top: 150px;
                }

                #itinerary {
                    scroll-margin-top: 150px;
                }

                @media (max-width: 768px) {

                    .ntp-section,
                    #itinerary {
                        scroll-margin-top: 90px;
                    }
                }

                .ntp-section-title {
                    font-size: 2rem;
                    font-weight: 900;
                    color: #1e293b;
                    margin-top: 0;
                    margin-bottom: 20px;
                    line-height: 1.2;
                }

                .ntp-section-title.ntp-text-dark {
                    color: #1e293b;
                    margin-bottom: 25px;
                }

                .ntp-alt-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-end;
                    margin-bottom: 25px;
                    border-bottom: 1px solid #e2e8f0;
                    /* Slate 200 */
                    padding-bottom: 20px;
                }

                .ntp-alt-title h3 {
                    font-size: 1.6rem;
                    font-weight: 900;
                    color: #1e293b;
                    margin: 0;
                }

                .ntp-alt-title p {
                    margin: 6px 0 0 0;
                    color: #64748b;
                    font-size: 0.95rem;
                }

                .ntp-peak-stat {
                    text-align: right;
                }

                .ntp-peak-label {
                    font-size: 0.75rem;
                    text-transform: uppercase;
                    letter-spacing: 1.5px;
                    color: #64748b;
                    font-weight: 700;
                    display: block;
                }

                .ntp-peak-val {
                    font-size: 2.2rem;
                    font-weight: 900;
                    color: #ff6b00;
                    line-height: 1;
                }

                .ntp-chart-container {
                    height: 300px;
                    /* Reduced Height */
                    width: 100%;
                    position: relative;
                }

                /* RIGHT: COMPACT ITINERARY LIST */
                .ntp-timeline-col {
                    position: relative;
                    padding-left: 0;
                    padding-top: 5px;
                }

                /* NEW: Inner Wrapper for Line */
                .ntp-timeline-list {
                    position: relative;
                    padding-top: 10px;
                    /* Space between title and line */
                }

                /* Line attached to List, NOT Col */
                .ntp-timeline-list::before {
                    content: '';
                    position: absolute;
                    top: 15px;
                    /* Adjust start */
                    bottom: 0;
                    left: 9px;
                    width: 2px;
                    background: #e2e8f0;
                    z-index: 0;
                }

                .ntp-timeline-item {
                    position: relative;
                    margin-bottom: 15px;
                    /* Compact Gap */
                    padding-left: 24px;
                    /* Adjusted Content Padding */
                    cursor: pointer;
                    transition: all 0.2s ease;
                }

                /* Node Dot */
                .ntp-timeline-node {
                    position: absolute;
                    left: 4px;
                    /* Aligned with Line (9px center - 5px radius) */
                    top: 4px;
                    width: 10px;
                    height: 10px;
                    background: #fff;
                    border: 2px solid #cbd5e1;
                    border-radius: 50%;
                    z-index: 1;
                    transition: all 0.3s ease;
                    box-shadow: 0 0 0 2px #fff;
                }

                .ntp-timeline-item.active .ntp-timeline-node {
                    border-color: #ff6b00;
                    background: #ff6b00;
                    transform: scale(1.3);
                    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
                }

                .ntp-timeline-item:hover .ntp-timeline-node {
                    border-color: #ff6b00;
                }

                /* Header Row */
                .ntp-day-meta-top {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 0;
                }

                .ntp-day-label {
                    font-size: 0.7rem;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    color: #64748b;
                    font-weight: 700;
                }

                /* Active State Label */
                .ntp-timeline-item.active .ntp-day-label {
                    color: #ff6b00;
                }

                /* Removed ACTIVE NOW content */

                .ntp-meta-right {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }

                .ntp-place-badge {
                    display: none;
                    /* Hide old badge if any remains */
                }

                .ntp-place-badge-large {
                    background: #ff6b00;
                    color: #fff;
                    font-size: 0.75rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    padding: 6px 14px;
                    border-radius: 4px;
                    letter-spacing: 0.5px;
                    display: inline-block;
                    box-shadow: 0 4px 6px -1px rgba(255, 107, 0, 0.2);
                }

                /* POPUP STYLES */
                .ntp-badge-container {
                    position: relative;
                    display: inline-block;
                }

                .ntp-badge-popup {
                    display: none;
                    position: absolute;
                    bottom: 125%;
                    /* Position above badge */
                    left: 50%;
                    transform: translateX(-50%);
                    width: 250px;
                    background: #fff;
                    border: 1px solid #e2e8f0;
                    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                    border-radius: 8px;
                    padding: 12px;
                    z-index: 100;
                    text-align: left;
                }

                /* Triangle Arrow */
                .ntp-badge-popup::after {
                    content: '';
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    margin-left: -6px;
                    border-width: 6px;
                    border-style: solid;
                    border-color: #fff transparent transparent transparent;
                }

                /* Show on Hover */
                .ntp-badge-container:hover .ntp-badge-popup,
                .ntp-badge-container:focus-within .ntp-badge-popup {
                    display: block;
                    animation: fadeIn 0.2s ease-in-out;
                }

                .ntp-popup-desc {
                    font-size: 0.8rem;
                    color: #475569;
                    margin: 0 0 8px 0;
                    line-height: 1.4;
                    font-weight: 400;
                    display: block;
                    /* Ensure it takes space */
                }

                .ntp-popup-link {
                    font-size: 0.75rem;
                    font-weight: 700;
                    color: #ff6b00;
                    text-decoration: none;
                    text-transform: uppercase;
                    display: block;
                }

                .ntp-popup-link:hover {
                    text-decoration: underline;
                }

                @keyframes fadeIn {
                    from {
                        opacity: 0;
                        transform: translateX(-50%) translateY(5px);
                    }

                    to {
                        opacity: 1;
                        transform: translateX(-50%) translateY(0);
                    }
                }

                .ntp-day-elev {
                    font-size: 0.8rem;
                    font-weight: 600;
                    color: #94a3b8;
                }

                .ntp-timeline-header-row {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 10px;
                    padding: 4px 0;
                }

                .ntp-day-title {
                    font-size: 1rem;
                    font-weight: 700;
                    color: #1e293b;
                    margin: 0;
                    line-height: 1.3;
                    transition: color 0.2s;
                    flex: 1;
                }

                .ntp-timeline-item.active .ntp-day-title {
                    color: #ff6b00;
                    font-size: 1.05rem;
                }

                .ntp-chevron {
                    font-size: 0.8rem;
                    color: #cbd5e1;
                    transition: transform 0.3s ease;
                }

                .ntp-timeline-item.active .ntp-chevron {
                    transform: rotate(180deg);
                    color: #ff6b00;
                }

                /* Content Wrapper - Card Style */
                .ntp-day-content-wrapper {
                    margin-top: 15px;
                    display: none;
                    background: #ffffff;
                    border: 1px solid #e2e8f0;
                    border-radius: 8px;
                    padding: 20px;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
                }

                .ntp-timeline-item.active .ntp-day-content-wrapper {
                    display: block;
                    overflow: visible;
                    /* PERMIT POPUPS */
                }

                /* POPUP STYLES - REFINED & CONVINCING */
                .ntp-badge-container {
                    position: relative;
                    display: inline-block;
                }

                .ntp-badge-popup {
                    display: none;
                    /* Controlled by opacity/visibility for smoother interaction */
                    visibility: hidden;
                    opacity: 0;
                    position: absolute;
                    bottom: calc(100% + 12px);
                    /* Space above badge */
                    right: 0;
                    width: 280px;
                    background: #ffffff;
                    border: 1px solid #e2e8f0;
                    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
                    border-radius: 12px;
                    padding: 16px;
                    z-index: 999;
                    text-align: left;
                    cursor: auto;
                    /* Default cursor inside */
                    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
                    transform: translateY(10px);
                }

                /* INVISIBLE BRIDGE to prevent closing when moving mouse */
                .ntp-badge-popup::before {
                    content: '';
                    position: absolute;
                    top: 100%;
                    /* Start exactly at bottom of popup */
                    left: 0;
                    right: 0;
                    height: 20px;
                    /* Extend down to cover the gap */
                }

                /* Triangle Arrow */
                .ntp-badge-popup::after {
                    content: '';
                    position: absolute;
                    top: 100%;
                    right: 20px;
                    border-width: 8px;
                    border-style: solid;
                    border-color: #ffffff transparent transparent transparent;
                    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.05));
                }

                /* Show on Hover/Focus */
                .ntp-badge-container:hover .ntp-badge-popup,
                .ntp-badge-container:focus-within .ntp-badge-popup,
                .ntp-badge-container.active .ntp-badge-popup {
                    display: block;
                    visibility: visible;
                    opacity: 1;
                    transform: translateY(0);
                }



                .ntp-day-img {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 16/9;
                    /* Enforce 1280x720 ratio */
                    object-fit: cover;
                    border-radius: 12px;
                    background-color: #f1f5f9;
                    position: relative;
                    overflow: hidden;
                    margin-bottom: 12px;
                }

                .ntp-day-img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .ntp-no-img {
                    background: #f8fafc;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.5rem;
                }

                /* Mobile Responsiveness */
                @media (max-width: 600px) {
                    .ntp-day-stats {
                        grid-template-columns: repeat(2, 1fr) !important;
                        /* 2 columns on mobile */
                        gap: 8px;
                    }

                    .ntp-badge-popup {
                        width: 260px;
                        /* Slightly narrower */
                        right: -10px;
                        /* Shift slightly right to use edge space */
                        bottom: calc(100% + 15px);
                    }

                    /* Adjust arrow to match shift */
                    .ntp-badge-popup::after {
                        right: 30px;
                    }

                    /* Ensure font sizes scale down slightly */
                    .ntp-place-badge-large {
                        font-size: 0.6rem !important;
                        padding: 4px 6px !important;
                    }
                }

                .ntp-desc-text {
                    font-size: 1.05rem;
                    /* Increased Size */
                    line-height: 1.6;
                    color: #334155;
                    margin-bottom: 12px;
                }

                .ntp-day-stats {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 10px;
                    padding-top: 12px;
                    border-top: 1px solid #f1f5f9;
                }

                .ntp-stat-box {
                    text-align: left;
                }

                .ntp-stat-val {
                    display: block;
                    font-weight: 700;
                    color: #1e293b;
                    font-size: 0.85rem;
                }

                .ntp-stat-lbl {
                    font-size: 0.65rem;
                    text-transform: uppercase;
                    color: #94a3b8;
                    margin-top: 2px;
                    display: block;
                }

                .ntp-weather-box {
                    background: #f0f9ff;
                    border: 1px solid #bae6fd;
                    color: #0284c7;
                    padding: 6px 10px;
                    border-radius: 6px;
                    font-size: 0.75rem;
                    margin-top: 12px;
                    display: inline-flex;
                    gap: 6px;
                    align-items: center;
                }

                /* MOBILE RESPONSIVE (<900px) */
                @media (max-width: 900px) {
                    .ntp-dynamic-wrapper {
                        grid-template-columns: 1fr;
                        /* Stack */
                        gap: 25px;
                        /* Reduced Mobile Gap */
                    }

                    .ntp-alt-card {
                        position: relative !important;
                        /* Disable sticky on mobile */
                        top: 0 !important;
                        order: 1;
                        /* Chart top */
                        z-index: 1;
                        padding: 20px;
                        /* Reduced padding */
                        margin-bottom: 20px;
                    }

                    .ntp-timeline-col {
                        order: 2;
                        /* Itinerary bottom */
                        padding-left: 0;
                        /* Remove Mobile Gap */
                    }

                    .ntp-timeline-node {
                        left: 4px;
                        /* Align with new line position */
                    }
                }
            

                    /* Previous CSS ... omitted for brevity in tool call but kept in file via context match */
                    .ntp-inc-card h3 {
                        margin: 0 0 25px 0;
                        font-size: 1.3rem;
                        font-weight: 700;
                        color: #333;
                        display: flex;
                        align-items: center;
                        gap: 12px;
                    }

                    .ntp-badge-icon {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 28px;
                        height: 28px;
                        border-radius: 50%;
                        font-size: 0.9rem;
                    }

                    .ntp-badge-icon.inc-badge {
                        background: #dcfce7;
                        color: #16a34a;
                    }

                    .ntp-badge-icon.exc-badge {
                        background: #fee2e2;
                        color: #dc2626;
                    }
                

                /* ============================================================
                                                                                                                                                                                               AGENCY COMPARISON — Table Layout (Desktop) + Mobile Fix
                                                                                                                                                                                            ============================================================ */
                .ntp-comparison-section {
                    padding: 80px 0;
                    background: #fff;
                    position: relative;
                    font-family: 'DM Sans', sans-serif;
                }

                .ntp-comp-header-top {
                    margin-bottom: 40px;
                }

                .ntp-comp-header-top-row {
                    display: flex;
                    align-items: flex-end;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    gap: 16px;
                }

                .ntp-comp-eyebrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: #FEF0E7;
                    color: #C05621;
                    padding: 5px 14px;
                    border-radius: 999px;
                    font-size: 0.75rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    letter-spacing: 0.07em;
                    margin-bottom: 12px;
                }

                .ntp-comp-eyebrow .dot {
                    width: 7px;
                    height: 7px;
                    background: #E57C35;
                    border-radius: 50%;
                    animation: compPulse 2s infinite;
                }

                @keyframes compPulse {

                    0%,
                    100% {
                        opacity: 1;
                        transform: scale(1);
                    }

                    50% {
                        opacity: 0.4;
                        transform: scale(0.6);
                    }
                }

                .ntp-comp-title {
                    font-family: 'Montserrat', sans-serif;
                    font-weight: 900;
                    font-size: 2.2rem;
                    color: #0f172a;
                    margin-bottom: 8px;
                    letter-spacing: -0.02em;
                }

                .ntp-comp-subtitle {
                    font-size: 1rem;
                    color: #64748b;
                    margin: 0;
                }

                .ntp-comp-count-pill {
                    background: #0f172a;
                    color: #fff;
                    padding: 8px 18px;
                    border-radius: 999px;
                    font-size: 0.85rem;
                    font-weight: 700;
                    white-space: nowrap;
                }

                /* Table card */
                .ntp-comp-table-card {
                    background: #fff;
                    border: 1px solid #e2e8f0;
                    border-radius: 16px;
                    overflow: hidden;
                    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
                    margin-bottom: 40px;
                }

                /* Desktop thead */
                .ntp-comp-thead {
                    display: grid;
                    grid-template-columns: 2fr 1fr 1.2fr;
                    padding: 16px 28px;
                    background: #f8fafc;
                    border-bottom: 1px solid #e2e8f0;
                }

                .ntp-th {
                    font-size: 0.72rem;
                    font-weight: 700;
                    color: #64748b;
                    text-transform: uppercase;
                    letter-spacing: 0.06em;
                }

                .ntp-th-price {
                    text-align: center;
                }

                .ntp-th-actions {
                    text-align: right;
                }

                /* Rows */
                .ntp-comp-tbody {
                    display: flex;
                    flex-direction: column;
                }

                .ntp-comp-tr {
                    display: grid;
                    grid-template-columns: 2fr 1fr 1.2fr;
                    padding: 24px 28px;
                    border-bottom: 1px solid #f1f5f9;
                    align-items: center;
                    transition: background 0.2s;
                }

                .ntp-comp-tr:last-child {
                    border-bottom: none;
                }

                .ntp-comp-tr:hover {
                    background: #f8fafc;
                }

                /* Agency cell */
                .ntp-td-agency {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                }

                .ntp-td-logo {
                    width: 60px;
                    height: 60px;
                    border-radius: 12px;
                    background: #f1f5f9;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    border: 1px solid #e2e8f0;
                    flex-shrink: 0;
                }

                .ntp-td-logo img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    padding: 4px;
                }

                .ntp-logo-placeholder-sm {
                    font-size: 1.4rem;
                    font-weight: 800;
                    color: #94a3b8;
                }

                .ntp-td-name {
                    margin: 0 0 4px;
                    font-family: 'Montserrat', sans-serif;
                    font-weight: 800;
                    font-size: 1.05rem;
                }

                .ntp-td-name a {
                    color: #0f172a;
                    text-decoration: none;
                    transition: color 0.2s;
                }

                .ntp-td-name a:hover {
                    color: #f97316;
                }

                .ntp-td-rating {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    font-size: 0.87rem;
                    font-weight: 700;
                    color: #f97316;
                }

                .ntp-td-reviews {
                    color: #94a3b8;
                    font-weight: 500;
                }

                /* Price cell */
                .ntp-td-price {
                    text-align: center;
                }

                .ntp-td-val {
                    font-size: 1.55rem;
                    font-weight: 900;
                    font-family: 'Montserrat', sans-serif;
                    color: #0f172a;
                    letter-spacing: -0.02em;
                }

                .ntp-td-per {
                    font-size: 0.72rem;
                    font-weight: 600;
                    color: #94a3b8;
                }

                /* Actions cell */
                .ntp-td-actions {
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                    gap: 12px;
                }

                .ntp-btn-inclusions {
                    background: none;
                    border: 1.5px solid #e2e8f0;
                    color: #64748b;
                    font-size: 0.88rem;
                    font-weight: 700;
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    cursor: pointer;
                    transition: all 0.2s;
                    padding: 9px 14px;
                    border-radius: 8px;
                    font-family: 'DM Sans', sans-serif;
                }

                .ntp-btn-inclusions:hover {
                    background: #f1f5f9;
                    color: #0f172a;
                    border-color: #cbd5e1;
                }

                .ntp-btn-quote {
                    background: #f97316;
                    color: #fff;
                    border: none;
                    padding: 10px 20px;
                    border-radius: 8px;
                    font-weight: 700;
                    font-size: 0.92rem;
                    cursor: pointer;
                    transition: all 0.2s;
                    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
                    font-family: 'DM Sans', sans-serif;
                }

                .ntp-btn-quote:hover {
                    background: #ea580c;
                    transform: translateY(-1px);
                    box-shadow: 0 6px 8px -1px rgba(249, 115, 22, 0.3);
                }

                /* Feature cards below table */
                .ntp-comp-features {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 20px;
                }

                .ntp-feat-card {
                    background: #f8fafc;
                    border-radius: 16px;
                    padding: 28px;
                    border: 1px solid #f1f5f9;
                    display: flex;
                    align-items: flex-start;
                    gap: 14px;
                    transition: all 0.2s;
                }

                .ntp-feat-card:hover {
                    border-color: #f97316;
                    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.07);
                }

                .ntp-feat-icon {
                    width: 44px;
                    height: 44px;
                    border-radius: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.3rem;
                    flex-shrink: 0;
                }

                .ntp-icon-shield,
                .ntp-icon-money,
                .ntp-icon-support {
                    background: #ffedd5;
                    color: #f97316;
                }

                .ntp-feat-card h4 {
                    margin: 0 0 6px;
                    font-family: 'Montserrat', sans-serif;
                    font-weight: 800;
                    font-size: 1rem;
                    color: #0f172a;
                }

                .ntp-feat-card p {
                    margin: 0;
                    font-size: 0.88rem;
                    color: #64748b;
                    line-height: 1.55;
                }

                /* Mobile price element — hidden on desktop */
                .ntp-mobile-price {
                    display: none;
                }

                .ntp-mobile-label {
                    font-size: 0.72rem;
                    font-weight: 600;
                    color: #94a3b8;
                    text-transform: uppercase;
                    letter-spacing: 0.04em;
                    margin-right: 2px;
                }

                /* ===== STICKY COMPARISON BAR ===== */
                .ntp-sticky-comp-bar {
                    position: fixed;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    background: rgba(13, 18, 30, 0.97);
                    backdrop-filter: blur(16px);
                    -webkit-backdrop-filter: blur(16px);
                    z-index: 9999;
                    padding: 12px 20px;
                    border-top: 1px solid rgba(255, 255, 255, 0.08);
                    transform: translateY(100%);
                    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
                }

                .ntp-sticky-comp-bar.visible {
                    transform: translateY(0);
                }

                .ntp-scb-inner {
                    max-width: 1100px;
                    margin: 0 auto;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    overflow-x: auto;
                    scrollbar-width: none;
                }

                .ntp-scb-inner::-webkit-scrollbar {
                    display: none;
                }

                .ntp-scb-label {
                    color: rgba(255, 255, 255, 0.45);
                    font-size: 0.72rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 0.07em;
                    white-space: nowrap;
                    flex-shrink: 0;
                }

                .ntp-scb-item {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    background: rgba(255, 255, 255, 0.07);
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 9px;
                    padding: 7px 12px;
                    white-space: nowrap;
                    flex-shrink: 0;
                    cursor: pointer;
                    transition: all 0.2s;
                }

                .ntp-scb-item:hover {
                    background: rgba(255, 255, 255, 0.13);
                    border-color: #f97316;
                }

                .ntp-scb-item .scb-name {
                    font-size: 0.83rem;
                    font-weight: 700;
                    color: #fff;
                }

                .ntp-scb-item .scb-price {
                    font-size: 0.92rem;
                    font-weight: 900;
                    color: #FBBF24;
                    margin-left: 4px;
                }

                .ntp-scb-cta {
                    margin-left: auto;
                    flex-shrink: 0;
                    display: flex;
                    align-items: center;
                    gap: 7px;
                    background: #f97316;
                    color: #fff;
                    border: none;
                    border-radius: 9px;
                    padding: 9px 16px;
                    font-size: 0.85rem;
                    font-weight: 800;
                    cursor: pointer;
                    white-space: nowrap;
                    font-family: 'DM Sans', sans-serif;
                    transition: all 0.2s;
                }

                .ntp-scb-cta:hover {
                    background: #ea580c;
                    transform: scale(1.03);
                }

                /* Modal */
                .ntp-d-modal {
                    display: none;
                    position: fixed;
                    inset: 0;
                    background: rgba(15, 23, 42, 0.8);
                    backdrop-filter: blur(8px);
                    z-index: 100000;
                    align-items: center;
                    justify-content: center;
                    padding: 20px;
                }

                .ntp-d-modal-box {
                    background: #fff;
                    width: 100%;
                    max-width: 550px;
                    border-radius: 28px;
                    overflow: hidden;
                    font-family: 'DM Sans', sans-serif;
                    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
                    animation: ntpModalShow 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
                }

                @keyframes ntpModalShow {
                    from {
                        opacity: 0;
                        transform: scale(0.96) translateY(20px);
                    }

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

                .ntp-modal-field {
                    margin-bottom: 18px;
                }

                .ntp-modal-field label {
                    display: block;
                    font-size: 0.72rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 0.06em;
                    color: #64748b;
                    margin-bottom: 8px;
                }

                .ntp-modal-field input,
                .ntp-modal-field textarea {
                    width: 100%;
                    padding: 14px 18px;
                    background: #f8fafc;
                    border: 1.5px solid #e2e8f0;
                    border-radius: 12px;
                    font-size: 0.97rem;
                    font-family: 'DM Sans', sans-serif;
                    color: #0f172a;
                    transition: all 0.2s;
                    box-sizing: border-box;
                }

                .ntp-modal-field input:focus,
                .ntp-modal-field textarea:focus {
                    background: #fff;
                    border-color: #f97316;
                    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
                    outline: none;
                }

                /* ===== MOBILE RESPONSIVE (<=900px) ===== */
                @media (max-width: 900px) {
                    .ntp-comparison-section {
                        padding: 32px 0 80px;
                        overflow-x: hidden;
                        max-width: 100vw;
                    }

                    /* Contain the inner wrapper */
                    .ntp-comp-table-card {
                        max-width: 100%;
                        box-sizing: border-box;
                    }

                    /* Hide table header on mobile */
                    .ntp-comp-thead {
                        display: none;
                    }

                    /* Stack each row as a card on mobile */
                    .ntp-comp-tr {
                        display: flex;
                        flex-direction: column;
                        gap: 0;
                        padding: 16px;
                        border-bottom: 1px solid #e2e8f0;
                        box-sizing: border-box;
                        width: 100%;
                    }

                    /* Agency row: logo + name + price all in one row */
                    .ntp-td-agency {
                        margin-bottom: 10px;
                        align-items: flex-start;
                        min-width: 0;
                    }

                    /* Inline price badge next to name */
                    .ntp-td-agency-info {
                        display: flex;
                        flex-direction: column;
                        gap: 2px;
                        min-width: 0;
                    }

                    .ntp-td-name {
                        margin-bottom: 0;
                        word-break: break-word;
                    }

                    .ntp-td-name a {
                        white-space: normal;
                    }

                    /* Hide the separate price block */
                    .ntp-td-price {
                        display: none;
                    }

                    /* Inject price inline after rating */
                    .ntp-td-rating {
                        flex-wrap: wrap;
                        gap: 6px;
                    }

                    /* Mobile price pill shown inline */
                    .ntp-mobile-price {
                        display: inline-flex;
                        align-items: baseline;
                        gap: 4px;
                        font-size: 1.1rem;
                        font-weight: 900;
                        color: #0f172a;
                        letter-spacing: -0.02em;
                    }

                    .ntp-mobile-price .ntp-mobile-per {
                        font-size: 0.7rem;
                        font-weight: 600;
                        color: #94a3b8;
                        text-transform: uppercase;
                    }

                    /* 50/50 action buttons */
                    .ntp-td-actions {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 8px;
                        width: 100%;
                        box-sizing: border-box;
                    }

                    .ntp-btn-inclusions,
                    .ntp-btn-quote {
                        width: 100%;
                        min-width: 0;
                        justify-content: center;
                        text-align: center;
                        display: flex;
                        flex: unset;
                        box-sizing: border-box;
                    }

                    /* Feature cards stack */
                    .ntp-comp-features {
                        grid-template-columns: 1fr;
                    }

                    .ntp-comp-title {
                        font-size: 1.75rem;
                    }

                    .ntp-comp-count-pill {
                        display: none;
                    }

                    .ntp-comp-header-top-row {
                        flex-direction: column;
                        align-items: flex-start;
                    }

                    /* Inc/Exc modal: stack columns on mobile */
                    #ntp-incexc-modal .ntp-d-modal-box {
                        max-height: 90vh;
                        overflow-y: auto;
                        border-radius: 20px;
                        width: calc(100vw - 32px);
                    }

                    /* Stack the inc/exc 2-col grid on mobile */
                    .ntp-incexc-body {
                        grid-template-columns: 1fr !important;
                        padding: 20px !important;
                        gap: 20px !important;
                        max-height: 50vh !important;
                    }
                }

                @media (max-width: 480px) {
                    .ntp-td-logo {
                        width: 48px;
                        height: 48px;
                    }

                    .ntp-td-name {
                        font-size: 0.95rem;
                    }

                    .ntp-td-val {
                        font-size: 1.4rem;
                    }
                }
            

            .ntp-comparison-section {
                padding: 80px 0;
                background: #fff;
                position: relative;
                font-family: 'DM Sans', sans-serif;
            }

            .ntp-comp-header-top {
                margin-bottom: 40px;
            }

            .ntp-comp-title {
                font-family: 'Montserrat', sans-serif;
                font-weight: 900;
                font-size: 2.2rem;
                color: #0f172a;
                margin-bottom: 8px;
                letter-spacing: -0.02em;
            }

            .ntp-comp-subtitle {
                font-size: 1.1rem;
                color: #64748b;
                margin: 0;
            }

            .ntp-comp-table-card {
                background: #fff;
                border: 1px solid #e2e8f0;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
                margin-bottom: 40px;
            }

            .ntp-comp-thead {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr;
                padding: 20px 32px;
                background: #f8fafc;
                border-bottom: 1px solid #e2e8f0;
            }

            .ntp-th {
                font-size: 0.75rem;
                font-weight: 700;
                color: #64748b;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }

            .ntp-th-price {
                text-align: center;
            }

            .ntp-th-actions {
                text-align: right;
            }

            .ntp-comp-tbody {
                display: flex;
                flex-direction: column;
            }

            .ntp-comp-tr {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr;
                padding: 32px;
                border-bottom: 1px solid #f1f5f9;
                align-items: center;
                transition: background 0.2s;
            }

            .ntp-comp-tr:last-child {
                border-bottom: none;
            }

            .ntp-comp-tr:hover {
                background: #f8fafc;
            }

            .ntp-td-agency {
                display: flex;
                align-items: center;
                gap: 20px;
            }

            .ntp-td-logo {
                width: 64px;
                height: 64px;
                border-radius: 12px;
                background: #f1f5f9;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                border: 1px solid #e2e8f0;
            }

            .ntp-td-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                padding: 4px;
            }

            .ntp-logo-placeholder-sm {
                font-size: 1.5rem;
                font-weight: 800;
                color: #94a3b8;
            }

            .ntp-td-name {
                margin: 0 0 4px 0;
                font-family: 'Montserrat', sans-serif;
                font-weight: 800;
                font-size: 1.15rem;
            }

            .ntp-td-name a {
                color: #0f172a;
                text-decoration: none;
                transition: color 0.2s;
            }

            .ntp-td-name a:hover {
                color: #f97316;
                /* ntp-accent */
            }

            .ntp-td-rating {
                display: flex;
                align-items: center;
                gap: 4px;
                font-size: 0.9rem;
                font-weight: 700;
                color: #f97316;
            }

            .ntp-td-reviews {
                color: #94a3b8;
                font-weight: 500;
            }

            .ntp-td-price {
                text-align: center;
            }

            .ntp-td-val {
                font-size: 1.5rem;
                font-weight: 900;
                font-family: 'Montserrat', sans-serif;
                color: #0f172a;
                letter-spacing: -0.02em;
            }

            .ntp-td-per {
                font-size: 0.75rem;
                font-weight: 600;
                color: #94a3b8;
            }

            .ntp-td-actions {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 16px;
            }

            .ntp-btn-inclusions {
                background: none;
                border: none;
                color: #64748b;
                font-size: 0.9rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 6px;
                cursor: pointer;
                transition: color 0.2s;
                padding: 0;
            }

            .ntp-btn-inclusions:hover {
                color: #0f172a;
            }

            .ntp-btn-quote {
                background: #f97316;
                color: #fff;
                border: none;
                padding: 12px 24px;
                border-radius: 8px;
                font-weight: 700;
                font-size: 0.95rem;
                cursor: pointer;
                transition: all 0.2s;
                box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
            }

            .ntp-btn-quote:hover {
                background: #ea580c;
                transform: translateY(-1px);
                box-shadow: 0 6px 8px -1px rgba(249, 115, 22, 0.3);
            }

            /* Features below table */
            .ntp-comp-features {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .ntp-feat-card {
                background: #f8fafc;
                border-radius: 16px;
                padding: 32px;
                border: 1px solid #f1f5f9;
            }

            .ntp-feat-icon {
                width: 48px;
                height: 48px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .ntp-icon-shield {
                background: #ffedd5;
                color: #f97316;
            }

            .ntp-icon-money {
                background: #ffedd5;
                color: #f97316;
            }

            .ntp-icon-support {
                background: #ffedd5;
                color: #f97316;
            }

            .ntp-feat-card h4 {
                margin: 0 0 12px 0;
                font-family: 'Montserrat', sans-serif;
                font-weight: 800;
                font-size: 1.15rem;
                color: #0f172a;
            }

            .ntp-feat-card p {
                margin: 0;
                font-size: 0.95rem;
                color: #64748b;
                line-height: 1.6;
            }

            /* Modal Styles */
            .ntp-d-modal {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(15, 23, 42, 0.8);
                backdrop-filter: blur(8px);
                z-index: 100000;
                align-items: center;
                justify-content: center;
                padding: 20px;
            }

            .ntp-d-modal-box {
                background: #fff;
                width: 100%;
                max-width: 550px;
                border-radius: 32px;
                overflow: hidden;
                font-family: 'DM Sans', sans-serif !important;
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
                animation: ntpModalShow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            @keyframes ntpModalShow {
                from {
                    opacity: 0;
                    transform: scale(0.95) translateY(20px);
                }

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

            .ntp-modal-field {
                margin-bottom: 20px;
            }

            .ntp-modal-field label {
                display: block;
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: #64748b;
                margin-bottom: 8px;
            }

            .ntp-modal-field input,
            .ntp-modal-field textarea {
                width: 100%;
                padding: 16px 20px;
                background: #f8fafc;
                border: 2px solid #e2e8f0;
                border-radius: 12px;
                font-size: 1rem;
                font-family: 'DM Sans', sans-serif !important;
                color: #0f172a;
                transition: all 0.2s;
                box-sizing: border-box;
            }

            .ntp-modal-field input:focus,
            .ntp-modal-field textarea:focus {
                background: #fff;
                border-color: #0ea5e9;
                box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
                outline: none;
            }

            /* Modals injected below */
            @media (max-width: 900px) {
                .ntp-comp-thead {
                    display: none;
                    /* Hide header on mobile */
                }

                .ntp-comp-tr {
                    grid-template-columns: 1fr;
                    gap: 20px;
                    padding: 24px;
                }

                .ntp-td-price {
                    text-align: left;
                }

                .ntp-td-actions {
                    justify-content: flex-start;
                    flex-direction: column;
                    align-items: stretch;
                }

                .ntp-btn-quote {
                    width: 100%;
                }

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

                    .ntp-map-embed iframe {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        border: 0;
                    }
                

            /* Review CSS */
            .ntp-review-card {
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 12px;
                padding: 24px;
                margin-bottom: 20px;
                transition: transform 0.2s, box-shadow 0.2s;
            }

            .ntp-review-card:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
            }

            .ntp-review-header {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 15px;
            }

            .ntp-review-avatar img {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                object-fit: cover;
            }

            .ntp-avatar-placeholder {
                width: 50px;
                height: 50px;
                background: #e0f2fe;
                color: #0284c7;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                font-size: 1.2rem;
            }

            .ntp-reviewer-name {
                margin: 0;
                font-size: 1rem;
                font-weight: 700;
                color: #111;
            }

            .ntp-review-sub {
                font-size: 0.85rem;
                color: #6b7280;
                margin-bottom: 2px;
            }

            .ntp-review-title {
                margin: 0 0 10px 0;
                font-size: 1.1rem;
                font-weight: 700;
                color: #374151;
            }

            .ntp-review-content {
                color: #4b5563;
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .ntp-review-guide {
                margin-top: 15px;
                font-size: 0.85rem;
                color: #059669;
                background: #ecfdf5;
                padding: 4px 10px;
                border-radius: 20px;
                display: inline-block;
            }
        

    .ntp-lightbox {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        overflow: hidden;
    }

    .ntp-lb-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        position: relative;
        padding-bottom: 80px;
        box-sizing: border-box;
    }

    .ntp-lb-main-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    #ntp-lb-img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        border-radius: 4px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        animation: ntpFadeIn 0.3s;
    }

    @keyframes ntpFadeIn {
        from {
            opacity: 0.5;
            transform: scale(0.98);
        }

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

    /* Counter Top-Left */
    .ntp-lb-counter {
        position: absolute;
        top: 30px;
        left: 30px;
        bottom: auto;
        transform: none;
        color: #ddd;
        font-size: 16px;
        font-family: sans-serif;
        letter-spacing: 1px;
    }

    /* Clean Arrows */
    .ntp-lb-nav span {
        cursor: pointer;
        position: absolute;
        top: 50%;
        padding: 20px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 300;
        font-size: 40px;
        margin-top: -40px;
        user-select: none;
        background: transparent;
        transition: color 0.2s;
        z-index: 100001;
    }

    .ntp-lb-nav span:hover {
        color: #fff;
        background: transparent;
    }

    .ntp-lb-prev {
        left: 10px;
    }

    .ntp-lb-next {
        right: 10px;
    }

    /* Floating Thumbnail Strip (Centered Bottom) */
    .ntp-lb-thumbs {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 90%;
        height: auto;
        display: flex;
        gap: 8px;
        padding: 0;
        background: transparent;
        overflow-x: auto;
        box-sizing: border-box;
        backdrop-filter: none;
        z-index: 100001;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .ntp-lb-thumbs::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar Chrome */

    .ntp-lb-thumb {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 4px;
        opacity: 0.6;
        cursor: pointer;
        border: 2px solid transparent;
        flex-shrink: 0;
        transition: all 0.2s ease;
    }

    .ntp-lb-thumb:hover {
        opacity: 0.9;
    }

    .ntp-lb-thumb.active {
        opacity: 1;
        border-color: #fff;
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    /* Close Button */
    .ntp-lb-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #ccc;
        font-size: 40px;
        font-weight: 300;
    }

    .ntp-lb-close:hover {
        color: #fff;
    }

    @media(max-width: 768px) {
        .ntp-lb-content {
            padding-bottom: 0;
        }

        .ntp-lb-thumbs {
            bottom: 20px;
            width: 100%;
            justify-content: center;
        }

        .ntp-lb-nav span {
            padding: 10px;
            font-size: 30px;
        }
    }


    /* REDESIGN COMPONENTS INJECTED */

    /* 1. Difficulty Meter */
    .ntp-diff-meter {
        display: flex;
        gap: 3px;
        align-items: center;
        background: #f1f5f9;
        padding: 2px;
        border-radius: 4px;
    }

    .ntp-diff-bar {
        width: 6px;
        height: 14px;
        background: #cbd5e1;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .ntp-diff-bar.active {
        background: var(--ntp-primary);
        box-shadow: 0 0 6px rgba(0, 136, 204, 0.4);
    }

    /* 2. Button Consolidation */
    .ntp-btn-primary {
        background: var(--ntp-primary) !important;
        color: #fff !important;
        padding: 12px 28px;
        border-radius: 50px;
        font-family: var(--ntp-font-body);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .ntp-btn-primary:hover {
        background: var(--ntp-primary-hover) !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 136, 204, 0.25);
    }

    /* Premium OTA Advisory Buttons (Sleek Orange) */
    .ntp-btn-sticky,
    .ntp-btn-book {
        background: #f0624d !important;
        /* Vibrant Brand Orange */
        color: #ffffff !important;
        padding: 10px 24px !important;
        /* Reduced clunky padding */
        border-radius: 8px !important;
        /* Sleek rounded rectangle, not 50px pill */
        font-family: var(--ntp-font-body) !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.5px !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        box-shadow: 0 4px 15px rgba(240, 98, 77, 0.25) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .ntp-btn-sticky:hover,
    .ntp-btn-book:hover {
        background: #d84b38 !important;
        /* Deeper hover state */
        box-shadow: 0 6px 20px rgba(240, 98, 77, 0.35) !important;
        transform: translateY(-2px) !important;
    }

    .ntp-btn-outline {
        background: transparent;
        border: 2px solid var(--ntp-primary);
        color: var(--ntp-primary);
        padding: 10px 24px;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-block;
    }

    .ntp-btn-outline:hover {
        background: #f0f9ff;
        border-color: var(--ntp-primary-hover);
        color: var(--ntp-primary-hover);
    }

    /* 3. Pulse Itinerary Line */
    .ntp-timeline-col::before {
        width: 3px !important;
        background: linear-gradient(to bottom, var(--ntp-primary) 50%, #e2e8f0 50%) !important;
        background-size: 100% 30px !important;
        /* Dashed effect */
        left: 5px !important;
    }

    .ntp-timeline-item.active .ntp-timeline-node {
        background: var(--ntp-primary) !important;
        border-color: var(--ntp-primary) !important;
        box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.2) !important;
    }

    .ntp-day-title {
        font-family: var(--ntp-font-body);
    }

    /* Comparison Modal */
    .ntp-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999999;
        align-items: center;
        justify-content: center;
        padding: 20px;
        backdrop-filter: blur(4px);
    }

    .ntp-modal-window {
        background: #fff;
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .ntp-modal-header {
        padding: 25px;
        border-bottom: 1px solid #f1f5f9;
        position: relative;
    }

    .ntp-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #94a3b8;
    }
