
        /* Scoped styles for Tour Plan Box */
        .tour-plan-box {
            margin-top: 50px;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            position: relative;
        }

        /* Dark Header with Gradient */
        .tour-plan-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 30px;
            position: relative;
        }

        /* Decorative background pattern */
        .tour-plan-header::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 150px; height: 150px;
            background: rgba(212, 163, 115, 0.1);
            border-radius: 50%;
        }

        /* Title Area */
        .tour-header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .tour-plan-title {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 28px;
            color: #fff;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tour-plan-title i {
            color: #ff6200; /* Gold Icon */
        }

        .tour-logo-img {
            height: 40px;
           /* filter: brightness(0) invert(1);  Make logo white */
            opacity: 0.9;
        }

        /* Modern Button Tabs */
        .tour-tabs-wrapper {
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 5px;
        }
        .tour-tabs-wrapper::-webkit-scrollbar { display: none; }

        .tour-tabs-nav {
            display: inline-flex;
            gap: 12px;
        }

        .tour-tab-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 22px;
            border-radius: 30px;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 500;
            color: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tour-tab-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .tour-tab-btn.active {
            background: #ff6200;
            color: #fff;
            border-color: #ff6200;
            font-weight: 700;
            box-shadow: 0 10px 25px rgba(255, 98, 0, 0.2);;
        }

        /* Content Area with Pattern */
        .tour-content-area {
            padding: 40px;
            background-color: #f8fafc;
            min-height: 250px;
            /*background-image: radial-gradient(#cbd5e1 1px, transparent 1px);*/
            background-size: 20px 20px;
        }

        .tour-tab-pane {
            display: none;
            animation: slideUp 0.5s ease;
        }
        .tour-tab-pane.active { display: block; }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Timeline Checklist Styles */
        .tour-checklist ul {
            list-style: none;
            padding: 0 0 0 20px;
            margin: 0;
            border-left: 2px dashed #ff6200; /* Dotted line */
            position: relative;
        }

        .tour-checklist li {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            color: #334155;
            padding: 20px 25px;
            margin-bottom: 25px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            position: relative;
            margin-left: 25px;
            transition: transform 0.3s ease;
            border-left: 5px solid #ff6200;
        }

        .tour-checklist li:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }

        /* Timeline Dot Icons */
        .tour-checklist li::before {
            content: '\f3c5'; /* Map Marker Icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: -53px; /* Align dot on line */
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background: #fff;
            border: 3px solid #ff6200;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4a373;
            font-size: 14px;
            z-index: 2;
        }

        /* Connector Line Arrow (Triangle) */
        .tour-checklist li::after {
            content: '';
            position: absolute;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 10px 10px 10px 0;
            border-style: solid;
            border-color: transparent #fff transparent transparent;
        }

        /* Introduction Text */
        .pkg-intro {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .pkg-intro h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 36px;
            color: #1e293b;
            margin-bottom: 20px;
        }
        .pkg-intro p {
            font-family: 'DM Sans', sans-serif;
            font-size: 18px;
            color: #64748b;
            line-height: 1.6;
        }

        /* Package Grid */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding-bottom: 60px;
        }

        /* Package Card Design */
        .package-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #d4a373; /* Gold border on hover */
        }

        /* Card Image Area */
        .pkg-img-box {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .pkg-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .package-card:hover .pkg-img-box img {
            transform: scale(1.1);
        }

        .pkg-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #d4a373;
            color: #fff;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Card Content */
        .pkg-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .pkg-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .pkg-desc {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
        }

        /* Highlights List inside card */
        .pkg-highlights {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
            border-top: 1px dashed #e2e8f0;
            padding-top: 15px;
        }

        .pkg-highlights li {
            font-size: 14px;
            color: #475569;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pkg-highlights li i {
            color: #d4a373;
            font-size: 12px;
        }

        /* Action Button */
        .pkg-btn {
            text-align: center;
            background: #1e293b;
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s ease;
            display: block;
        }

        .pkg-btn:hover {
            background: #d4a373;
            color: #fff;
        }

        /* Customization Section */
        .custom-plan-box {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .custom-plan-box::before {
            content: '';
            position: absolute;
            top: -50%; left: -10%;
            width: 300px; height: 300px;
            background: rgba(212, 163, 115, 0.1);
            border-radius: 50%;
        }

        .custom-plan-box h3 {
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 32px;
            margin-bottom: 15px;
        }

        .custom-plan-box p {
            color: #cbd5e1;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 30px auto;
        }

        .btn-gold {
            background: #d4a373;
            color: #fff;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-gold:hover {
            background: #fff;
            color: #1e293b;
        }
