
        :root {
            --orange:    #fcbf14;
            --dark:      #024b99;
            --light-bg:  #fff4e6;
            --page-bg:   #fdfaf7;
            --card-bg:   #ffffff;
            --muted:     #777;
            --border:    #f0ece5;
            --shadow:    0 4px 28px rgba(0,0,0,0.07);
            --shadow-lg: 0 14px 48px rgba(0,0,0,0.12);
            --input-bg:  #f5f1eb;
            --input-bdr: #e8e2d9;
        }

        /* PAGE */
        .trv-svc-detail-page {
            padding: 80px 0 100px;
            background: var(--page-bg);
        }

        /* BREADCRUMB */
        .trv-svc-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        .trv-svc-breadcrumb a {
            color: var(--orange);
            text-decoration: none;
            font-weight: 600;
        }
        .trv-svc-breadcrumb a:hover { text-decoration: underline; }
        .trv-svc-breadcrumb i { font-size: 11px; }

        /* HERO IMAGE BOX */
        .trv-svc-hero {
            border-radius: 22px;
            overflow: hidden;
            position: relative;
            margin-bottom: 36px;
            box-shadow: var(--shadow-lg);
            height: 520px;
        }
        .trv-svc-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .trv-svc-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.18) 55%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 36px 36px;
        }
        .trv-svc-hero-content .svc-badge {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .trv-svc-hero-content h1 {
            color: #fff;
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
            margin: 0;
        }
        .trv-svc-hero-content h1 span { color: var(--orange); }

        /* ARTICLE BODY */
        .trv-svc-article {
            background: var(--card-bg);
            border-radius: 22px;
            padding: 40px 40px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
        }

        .trv-svc-article p {
            font-size: 15.5px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 20px;
            text-align: justify;
        }

        .trv-svc-article h2 {
            font-size: 22px;
            font-weight: 800;
            color: var(--dark);
            margin: 36px 0 14px;
            padding-left: 16px;
            border-left: 4px solid var(--orange);
            line-height: 1.35;
        }

        .trv-svc-article h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin: 24px 0 12px;
        }

        /* HIGHLIGHT BOX */
        .trv-highlight {
            background: var(--light-bg);
            border-left: 4px solid var(--orange);
            border-radius: 0 14px 14px 0;
            padding: 18px 22px;
            margin: 22px 0;
        }
        .trv-highlight p {
            margin: 0 !important;
            font-weight: 600;
            color: var(--dark);
            font-size: 15px !important;
            text-align: left !important;
        }

        /* CHECKLIST */
        .trv-check-list {
            list-style: none;
            padding: 0;
            margin: 14px 0 22px;
        }
        .trv-check-list li {
            font-size: 15px;
            color: #444;
            padding: 9px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            line-height: 1.6;
            text-align: left;
        }
        .trv-check-list li:last-child { border-bottom: none; }
        .trv-check-list li i {
            color: var(--orange);
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* TWO COLUMN GRID FOR DESTINATIONS */
        .trv-dest-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 18px 0 24px;
        }
        .trv-dest-item {
            background: var(--page-bg);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 18px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.25s;
        }
        .trv-dest-item:hover {
            border-color: var(--orange);
            background: var(--light-bg);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(247,147,30,0.1);
        }
        .trv-dest-item .dest-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--light-bg);
            color: var(--orange);
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .trv-dest-item span {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
        }

        /* VEHICLE CARDS */
        .trv-vehicle-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 18px 0 24px;
        }
        .trv-vehicle-card {
            background: var(--page-bg);
            border: 2px solid var(--border);
            border-radius: 16px;
            padding: 22px 16px;
            text-align: center;
            transition: all 0.3s;
        }
        .trv-vehicle-card:hover {
            border-color: var(--orange);
            background: var(--light-bg);
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(247,147,30,0.12);
        }
        .trv-vehicle-card .v-icon {
            font-size: 36px;
            margin-bottom: 10px;
            display: block;
        }
        .trv-vehicle-card .v-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            display: block;
            margin-bottom: 4px;
        }
        .trv-vehicle-card .v-desc {
            font-size: 12.5px;
            color: var(--muted);
            line-height: 1.5;
        }

        /* BOOKING STEPS */
        .trv-booking-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 18px 0 24px;
        }
        .trv-step-item {
            text-align: center;
            padding: 24px 16px;
            background: var(--page-bg);
            border-radius: 16px;
            border: 1px solid var(--border);
            position: relative;
        }
        .trv-step-item::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 8px solid var(--border);
            z-index: 1;
        }
        .trv-step-item:last-child::after { display: none; }
        .trv-step-item .step-num {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--orange);
            color: #fff;
            font-size: 15px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }
        .trv-step-item .step-title {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--dark);
            display: block;
        }
        .trv-step-item .step-desc {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
            line-height: 1.5;
        }

        /* TAGS */
        .trv-svc-tags {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            padding: 22px 40px;
            border-top: 1px solid var(--border);
            background: var(--card-bg);
            border-radius: 0 0 22px 22px;
            margin-top: -28px;
            margin-bottom: 28px;
            box-shadow: var(--shadow);
        }
        .trv-svc-tags .tags-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--dark);
        }
        .trv-svc-tags a {
            font-size: 12px;
            font-weight: 600;
            background: var(--light-bg);
            color: var(--orange);
            padding: 5px 14px;
            border-radius: 50px;
            text-decoration: none;
            border: 1px solid #ffd9a0;
            transition: all 0.2s;
        }
        .trv-svc-tags a:hover { background: var(--orange); color: #fff; }

        /* SHARE */
        .trv-svc-share {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            border-top: 1px solid var(--border);
            background: var(--card-bg);
            border-radius: 0 0 22px 22px;
            margin-top: -28px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
        }
        .trv-svc-share .share-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--dark);
        }
        .trv-svc-share a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: #fff;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .trv-svc-share a:hover { transform: scale(1.15); }
        .trv-svc-share .sh-fb { background: #1877f2; }
        .trv-svc-share .sh-wa { background: #25d366; }
        .trv-svc-share .sh-tw { background: #1da1f2; }
        .trv-svc-share .sh-ln { background: #0a66c2; }

        /* =========================================
           SIDEBAR
        ========================================= */
        .trv-svc-sidebar { position: sticky; top: 100px; }

        .trv-sidebar-widget {
            background: var(--card-bg);
            border-radius: 18px;
            padding: 28px 24px;
            margin-bottom: 26px;
            box-shadow: var(--shadow);
        }

        .trv-sidebar-title {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            position: relative;
        }
        .trv-sidebar-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--orange);
        }

        /* SERVICE NAV LIST */
        .trv-svc-nav {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .trv-svc-nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            background: var(--page-bg);
            text-decoration: none;
            border: 1px solid var(--border);
            transition: all 0.25s;
        }
        .trv-svc-nav li a:hover,
        .trv-svc-nav li a.active {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            transform: translateX(4px);
        }
        .trv-svc-nav li a i { font-size: 15px; }
        .trv-svc-nav li a:hover i,
        .trv-svc-nav li a.active i { color: #fff; }
        .trv-svc-nav li a i { color: var(--orange); }

        /* QUICK CONTACT FORM IN SIDEBAR */
        .trv-quick-form .q-field {
            margin-bottom: 14px;
        }
        .trv-quick-form .q-field label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }
        .trv-quick-form .q-field input,
        .trv-quick-form .q-field textarea {
            width: 100%;
            padding: 11px 14px;
            border: 2px solid var(--input-bdr);
            border-radius: 10px;
            font-size: 13.5px;
            color: var(--dark);
            background: var(--input-bg);
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
            box-sizing: border-box;
            -webkit-appearance: none;
            appearance: none;
        }
        .trv-quick-form .q-field input:focus,
        .trv-quick-form .q-field textarea:focus {
            border-color: var(--orange);
            background: #fff;
        }
        .trv-quick-form .q-field input::placeholder,
        .trv-quick-form .q-field textarea::placeholder {
            color: #b0a89c;
        }
        .trv-quick-form .q-field textarea { min-height: 80px; resize: vertical; }

        /* custom select in sidebar form */
        .trv-quick-form .q-select-wrap {
            position: relative;
        }
        .trv-quick-form .q-select-wrap .q-arrow {
            position: absolute;
            right: 13px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: var(--orange);
            font-size: 13px;
        }
        .trv-quick-form .q-select-wrap select {
            width: 100%;
            padding: 11px 38px 11px 14px;
            border: 2px solid var(--input-bdr);
            border-radius: 10px;
            font-size: 13.5px;
            color: var(--dark);
            background: var(--input-bg);
            outline: none;
            font-family: inherit;
            box-sizing: border-box;
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            transition: border-color 0.2s;
        }
        .trv-quick-form .q-select-wrap select:focus { border-color: var(--orange); background: #fff; }
        .trv-quick-form .q-select-wrap select::-ms-expand { display: none; }

        .trv-quick-form .q-btn {
            width: 100%;
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 13px 20px;
            border-radius: 50px;
            font-size: 14.5px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            font-family: inherit;
        }
        .trv-quick-form .q-btn:hover {
            background: #e07d0e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(247,147,30,0.35);
        }

        /* WHY CHOOSE SIDEBAR */
        .trv-why-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .trv-why-list li {
            font-size: 13.5px;
            color: #444;
            padding: 9px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.5;
        }
        .trv-why-list li:last-child { border-bottom: none; }
        .trv-why-list li i { color: var(--orange); font-size: 15px; flex-shrink: 0; }

        /* CALL CTA SIDEBAR */
        .trv-call-cta {
            background: linear-gradient(135deg, var(--dark), #024b99);
            border-radius: 18px;
            padding: 28px 24px;
            text-align: center;
        }
        .trv-call-cta .cta-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(247,147,30,0.15);
            border: 2px solid rgba(247,147,30,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 24px;
            color: var(--orange);
        }
        .trv-call-cta h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 6px;
        }
        .trv-call-cta p {
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            margin-bottom: 18px;
            line-height: 1.6;
        }
        .trv-call-cta .call-btn {
            display: block;
            background: var(--orange);
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 10px;
            transition: all 0.2s;
        }
        .trv-call-cta .call-btn:hover {
            background: #fcbf14;
            transform: translateY(-2px);
        }
        .trv-call-cta .wa-btn {
            display: block;
            background: #25d366;
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }
        .trv-call-cta .wa-btn:hover {
            background: #1da855;
            transform: translateY(-2px);
        }

        /* RELATED SERVICES */
        .trv-related-svc {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .trv-related-svc-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px;
            background: var(--page-bg);
            border-radius: 12px;
            border: 1px solid var(--border);
            text-decoration: none;
            transition: all 0.25s;
        }
        .trv-related-svc-item:hover {
            border-color: var(--orange);
            background: var(--light-bg);
            transform: translateX(4px);
        }
        .trv-related-svc-item .rs-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--light-bg);
            color: var(--orange);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .trv-related-svc-item:hover .rs-icon { background: var(--orange); color: #fff; }
        .trv-related-svc-item .rs-info strong {
            display: block;
            font-size: 13.5px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }
        .trv-related-svc-item .rs-info span {
            font-size: 12px;
            color: var(--muted);
        }

        /* PAGE CTA BOTTOM */
        .trv-svc-cta {
            background: linear-gradient(135deg, var(--orange), #f5a623);
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 12px;
        }
        .trv-svc-cta::before {
            content: '🚖';
            position: absolute;
            font-size: 200px;
            opacity: 0.06;
            top: -30px;
            right: 2%;
            line-height: 1;
        }
        .trv-svc-cta h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
        }
        .trv-svc-cta p {
            font-size: 16px;
            color: rgba(26,26,46,0.72);
            max-width: 520px;
            margin: 0 auto 32px;
            line-height: 1.75;
            text-align: center;
        }
        .trv-svc-cta-btns {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }
        .trv-svc-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
        }
        .trv-svc-cta-btn.dark { background: var(--dark); color: var(--orange); }
        .trv-svc-cta-btn.dark:hover { background: #0f3460; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,0.3); }
        .trv-svc-cta-btn.white { background: #fff; color: var(--dark); }
        .trv-svc-cta-btn.white:hover { background: var(--dark); color: var(--orange); transform: translateY(-2px); }
        .trv-svc-cta-btn.green { background: #25d366; color: #fff; }
        .trv-svc-cta-btn.green:hover { background: #1da855; transform: translateY(-2px); }
        .trv-svc-cta .cta-note {
            margin-top: 20px;
            font-size: 13.5px;
            color: rgba(26,26,46,0.6);
            font-style: italic;
        }

        /* RESPONSIVE */
        @media (max-width: 991px) {
            .trv-svc-sidebar { position: relative; top: auto; margin-top: 40px; }
            .trv-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
            .trv-booking-steps { grid-template-columns: repeat(2, 1fr); }
            .trv-step-item::after { display: none; }
        }
        @media (max-width: 767px) {
            .trv-svc-hero { height: 240px; }
            .trv-svc-hero-content h1 { font-size: 20px; }
            .trv-svc-hero-overlay { padding: 20px; }
            .trv-svc-article { padding: 26px 20px; }
            .trv-dest-grid { grid-template-columns: 1fr; }
            .trv-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
            .trv-booking-steps { grid-template-columns: 1fr 1fr; }
            .trv-svc-tags,
            .trv-svc-share { padding: 16px 20px; }
            .trv-svc-cta { padding: 40px 20px; }
            .trv-svc-cta h2 { font-size: 24px; }
        }
        @media (max-width: 480px) {
            .trv-vehicle-grid { grid-template-columns: 1fr 1fr; }
            .trv-booking-steps { grid-template-columns: 1fr; }
        }

