.elementor-kit-4649{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;overscroll-behavior:none;}.elementor-kit-4649 e-page-transition{background-color:#FFFFFF;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-lightbox{background-color:#FFFFFF;--lightbox-ui-color:#FFFFFF;--lightbox-ui-color-hover:#FFFFFF;}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-header .site-title a{color:#FFFFFF;}.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 *//* ===== FINAL EXPLORE PAGE (North Star GPS – CLEAN, EXECUTE MATCHED) ===== */

:root {
  --bg: #F5D6BA;
  --panel: #D4AA7D;
  --ink: #2B2B2B;
  --radius: 25px;
  --line: rgba(0,0,0,0.1);
  --header-height: 120px;
  --footer-height: 120px;
}

/* === DESKTOP LAYOUT === */
html, body {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  background: var(--bg);
  font-family: 'Exo 2', sans-serif;
  color: var(--ink);
}

/* ===== HEADER ===== */
.mn-header-outer.explore-header {
  background: #D4AA7D;
  width: 100vw;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mn-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.mn-logo img {
  height: 38px;
  object-fit: contain;
}

.mn-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mn-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 6px 12px;
  border-radius: 9px;
}

.mn-nav a:hover {
  background: rgba(255,255,255,0.15);
}

.mn-nav a.active-link {
  color: #D4AA7D;
  background: #fff;
  font-weight: 700;
}

/* ===== FOOTER ===== */
.mn-footer {
  background: #D4AA7D;
  width: 100vw;
  height: var(--footer-height);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mn-footer-inner {
  width: 100%;
  max-width: 940px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: scale(1.15);
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-left img {
  width: 70px;
  margin-bottom: 4px;
}

.footer-left .license-number,
.footer-email,
.footer-right span {
  color: #000;
  font-weight: 700;
}

.footer-right span {
  font-size: 0.85rem;
  line-height: 1.1;
}

/* ===== MAIN CONTENT ===== */
main {
  display: flex;
  justify-content: center;
  padding-top: var(--header-height);
}

.container {
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 20px;
}

/* ===== CHAT AND FAQ ===== */
.chat-box,
.faq-box {
  flex: 1;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faq-box {
  overflow-y: auto;
}

/* ===== CHAT HEIGHT LOCK ===== */
.chat-box {
  height: 650px;
  max-height: 650px;
  overflow: hidden;
}

#chat-body {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* =====================================================
   GPT-STYLE CHAT ALIGNMENT (LEFT ONLY, NO RIGHT FLOW)
   ===================================================== */

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0;
  width: 100%;
}

/* Bot messages */
.chat-message.bot {
  justify-content: flex-start;
}

/* User messages — ALSO LEFT */
.chat-message.user {
  justify-content: flex-start;
}

/* Optional visual difference only */
.chat-message.user .chat-bubble {
  opacity: 0.95;
}

/* ===== MOBILE LAYOUT ===== */
@media (max-width: 767px) {

  html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .mn-header-outer.explore-header {
    position: relative !important;
    height: auto !important;
    padding: 12px 0 !important;
  }

  .mn-header-inner {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .mn-logo img {
    height: 45px !important;
  }

  main {
    padding-top: 12px !important;
    padding-bottom: 0 !important;
  }

  .container {
    flex-direction: column !important;
    padding: 10px !important;
    gap: 14px !important;
  }

  .chat-box {
    height: 70vh !important;
    max-height: 70vh !important;
    min-height: 70vh !important;
  }

  .mn-footer {
    position: relative !important;
    height: auto !important;
    padding: 15px 0 !important;
  }

  .mn-footer-inner {
    flex-direction: column !important;
    gap: 8px !important;
    transform: none !important;
  }
}/* End custom CSS */