.elementor-kit-90{--e-global-color-primary:#7A8890;--e-global-color-secondary:#2F3B44;--e-global-color-text:#7A8890;--e-global-color-accent:rgba(0,0,0,0);--e-global-color-inverse_primary:#2F3B44;--e-global-color-5ca2663:#BCC6CC;--e-global-color-aabb182:#FFFFFF;--e-global-color-9e43e13:#424847;--e-global-color-adc636d:#2F3B44;--e-global-color-5b48f86:#3A444C;--e-global-color-3a37ee9:#F5F7F8;--e-global-color-a63ef91:#D4B06A;--e-global-color-6da9918:#FCFAF7;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-size:1.5rem;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:1.6em;--e-global-typography-secondary-font-family:"Roboto";--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-size:1rem;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.6em;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-size:1rem;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-line-height:1.68em;--e-global-typography-inverse_primary-font-family:"Roboto";}.elementor-kit-90 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */document.addEventListener("DOMContentLoaded", function () {
  // 1. Fetch live trip data from your Admin Portal's database/API
  // (Replace 'fetchTripDataFromAdmin' with your actual admin global variable or API endpoint)
  const dynamicTripData = window.currentTripData || {}; 

  // 2. Find every element that has a data-trip-field hook
  const hooks = document.querySelectorAll('[data-trip-field]');

  hooks.forEach(hook => {
    const fieldName = hook.getAttribute('data-trip-field'); // e.g., "price"
    
    // 3. If the admin database has data for this field, inject it
    if (dynamicTripData[fieldName]) {
      hook.textContent = dynamicTripData[fieldName];
    }
  });
});/* End custom CSS */