Journey in Comfort & Style

Experience luxury travel across India with our premium fleet of vehicles and professional drivers.

Coverage Across India

We operate across all major states and cities throughout India

Our Premium Fleet

Handpicked vehicles for your comfort and safety

Sedan

Perfect for individual travelers and couples

  • Comfortable seating
  • Climate control
  • Advanced safety

SUV

Ideal for families and group travel

  • Spacious interior
  • Enhanced comfort
  • Premium features

Luxury

Ultimate luxury for executive travel

  • Premium seating
  • Entertainment system
  • VIP service

What Our Guests Say

Real experiences from our valued customers

"Exceptional service and comfortable journey. The driver was professional and courteous throughout our trip!"

Rajesh Kumar

Business Traveler

"Best ride experience ever! The fleet is well-maintained and the booking process was so easy."

Priya Sharma

Family Traveler

"Punctual, reliable, and professional. I've been using their service for corporate travels and never disappointed!"

Amit Patel

Corporate Client

About Comfort Elite Journey

Founded in 2024, Comfort Elite Journey is dedicated to delivering premium travel experiences across India. Our commitment to comfort, safety, and excellence reflects our mission to be a trusted travel partner.

Professional Drivers

Experienced and courteous drivers trained in customer service

Well-Maintained Fleet

Regular maintenance and hygiene checks for your safety

24/7 Support

Round-the-clock customer support for any assistance

Business Details

Phone: +91 9667094437

Email: info@comfortejourney.com

GST: 09AELPS6583B1Z2

Get in Touch

Have questions? We're here to help!

Phone

+91 9667094437

Email

info@comfortejourney.com

GST Number

09AELPS6583B1Z2

Address

New Delhi, India

Book Your Journey

Fill out the form below and we'll get back to you shortly

// Initialize SDKs const defaultConfig = { nav_title: 'Comfort Elite Journey', hero_title: 'Journey in Comfort & Style', hero_desc: 'Experience luxury travel across India with our premium fleet of vehicles and professional drivers.', states_title: 'Coverage Across India', states_desc: 'We operate in major states and cities throughout India', fleet_title: 'Our Premium Fleet', fleet_desc: 'Handpicked vehicles for your comfort and safety', reviews_title: 'What Our Guests Say', reviews_desc: 'Real experiences from our valued customers', about_title: 'About Comfort Elite Journey', about_desc: 'Founded in 2010, we\'ve been delivering premium travel experiences across India for over a decade. Our commitment to comfort, safety, and excellence has made us a trusted name in the industry.', contact_title: 'Get in Touch', contact_desc: 'Have questions? We\'re here to help!', contact_phone: '+91 1800-JOURNEY (568739)', contact_email: 'hello@comfortelitejourney.com', contact_address: 'New Delhi, India', enquiry_title: 'Book Your Journey', enquiry_desc: 'Fill out the form below and we\'ll get back to you shortly', footer_brand: 'Comfort Elite Journey', footer_tagline: 'Premium travel experiences across India', footer_copyright: '© 2024 Comfort Elite Journey. All rights reserved.', primary_color: '#e8772e', secondary_color: '#1a2e1a', text_color: '#5a6e5a', font_family: 'DM Sans' }; let config = { ...defaultConfig }; // Element SDK initialization if (window.elementSdk) { window.elementSdk.init({ defaultConfig, onConfigChange: async (newConfig) => { config = newConfig; updateUI(); }, mapToCapabilities: (cfg) => ({ recolorables: [ { get: () => cfg.primary_color || defaultConfig.primary_color, set: (value) => { config.primary_color = value; window.elementSdk.setConfig({ primary_color: value }); } }, { get: () => cfg.secondary_color || defaultConfig.secondary_color, set: (value) => { config.secondary_color = value; window.elementSdk.setConfig({ secondary_color: value }); } }, { get: () => cfg.text_color || defaultConfig.text_color, set: (value) => { config.text_color = value; window.elementSdk.setConfig({ text_color: value }); } } ], borderables: [], fontEditable: { get: () => cfg.font_family || defaultConfig.font_family, set: (value) => { config.font_family = value; window.elementSdk.setConfig({ font_family: value }); } }, fontSizeable: undefined }), mapToEditPanelValues: (cfg) => new Map([ ['nav_title', cfg.nav_title || defaultConfig.nav_title], ['hero_title', cfg.hero_title || defaultConfig.hero_title], ['hero_desc', cfg.hero_desc || defaultConfig.hero_desc], ['states_title', cfg.states_title || defaultConfig.states_title], ['fleet_title', cfg.fleet_title || defaultConfig.fleet_title], ['about_title', cfg.about_title || defaultConfig.about_title], ['enquiry_title', cfg.enquiry_title || defaultConfig.enquiry_title] ]) }); } function updateUI() { // Update text content document.getElementById('nav-title').textContent = config.nav_title || defaultConfig.nav_title; document.getElementById('hero-title').textContent = config.hero_title || defaultConfig.hero_title; document.getElementById('hero-desc').textContent = config.hero_desc || defaultConfig.hero_desc; document.getElementById('states-title').textContent = config.states_title || defaultConfig.states_title; document.getElementById('fleet-title').textContent = config.fleet_title || defaultConfig.fleet_title; document.getElementById('about-title').textContent = config.about_title || defaultConfig.about_title; document.getElementById('enquiry-title').textContent = config.enquiry_title || defaultConfig.enquiry_title; } // Mobile menu toggle document.getElementById('mobile-menu-btn').addEventListener('click', function() { const menu = document.getElementById('mobile-menu'); menu.classList.toggle('hidden'); }); // Show more states toggle document.getElementById('show-more-btn').addEventListener('click', function() { const moreStates = document.getElementById('more-states'); moreStates.classList.toggle('hidden'); this.textContent = moreStates.classList.contains('hidden') ? 'Show More States' : 'Show Less States'; }); // Scroll to enquiry section function scrollToEnquiry() { const enquirySection = document.getElementById('enquiry'); enquirySection.scrollIntoView({ behavior: 'smooth' }); } // Scroll to about section function scrollToAbout() { const aboutSection = document.getElementById('about'); aboutSection.scrollIntoView({ behavior: 'smooth' }); } // Call popup functions function showCallPopup() { const popup = document.getElementById('call-popup'); popup.classList.remove('hidden'); lucide.createIcons(); } function hideCallPopup() { const popup = document.getElementById('call-popup'); popup.classList.add('hidden'); } // Form submission document.getElementById('enquiry-form').addEventListener('submit', function(e) { e.preventDefault(); const formMessage = document.getElementById('form-message'); formMessage.textContent = '✓ Thank you for your enquiry! We\'ll contact you soon.'; formMessage.classList.remove('hidden'); this.reset(); setTimeout(() => { formMessage.classList.add('hidden'); }, 5000); }); // Smooth scroll for nav links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function(e) { const href = this.getAttribute('href'); if (href !== '#') { e.preventDefault(); const target = document.querySelector(href); if (target) { target.scrollIntoView({ behavior: 'smooth' }); const menu = document.getElementById('mobile-menu'); if (!menu.classList.contains('hidden')) { menu.classList.add('hidden'); } } } }); }); // Initialize Lucide icons lucide.createIcons();