
:root{
  --bg:#020912;
  --bg2:#07182d;
  --panel:#06182f;
  --panel2:#0a2445;
  --panel3:#0d2d56;
  --gold:#e2bc3b;
  --gold2:#f5cb4a;
  --text:#ffffff;
  --muted:#bdd0e6;
  --line:rgba(255,255,255,.10);
  --line-soft:rgba(255,255,255,.06);
  --orange:#ff8f1f;
  --teal:#1ad0d8;
  --shadow:0 18px 40px rgba(0,0,0,.38);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(255,150,0,.12), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(0,102,255,.15), transparent 24%),
    radial-gradient(circle at 45% 38%, rgba(0,208,255,.08), transparent 18%),
    linear-gradient(180deg,#02070f 0%, #04111f 20%, #071a31 55%, #08182d 100%);
  min-height:100vh;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1180px, calc(100% - 28px)); margin:0 auto}
.site-shell{
  padding:16px 0 8px;
  position:static;
  top:0;
  z-index:20;
  backdrop-filter:blur(10px);
  background:linear-gradient(180deg, rgba(1,13,28,.92), rgba(4,20,40,.78));
  border-bottom:1px solid rgba(255,255,255,.05);
}
.topline{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-size:13px; font-weight:800; color:#f4f7fb; letter-spacing:.08em;
  margin-bottom:12px;
}
.site-header{
  display:flex; align-items:center; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:230px;
  padding:10px 14px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(8,28,52,.98), rgba(4,18,35,.98));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:var(--shadow);
}
.brand img{width:150px; height:52px; object-fit:contain; object-position:left center}
.brand-copy{display:none}
.nav-pills{
  flex:1;
  display:flex; align-items:center; gap:6px;
  padding:10px 12px;
  border-radius:22px;
  overflow:auto;
  scrollbar-width:none;
  background:linear-gradient(180deg, rgba(6,25,49,.96), rgba(4,16,31,.96));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:var(--shadow);
}
.nav-pills::-webkit-scrollbar{display:none}
.nav-pills a{
  padding:11px 15px; border-radius:999px; white-space:nowrap;
  font-size:14px; font-weight:700; color:#eef4fb;
}
.nav-pills a:hover{background:rgba(255,255,255,.06)}
.nav-pills a.active{background:linear-gradient(180deg, var(--gold2), #d6ab28); color:#162033}
.book-btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:128px; height:48px; padding:0 24px; border-radius:999px;
  background:linear-gradient(180deg,#ffa534,#f27b09);
  color:#fff; font-weight:800; box-shadow:0 12px 24px rgba(242,123,9,.28);
}
.hero{
  padding:42px 0 18px;
}
.hero-grid{
  display:grid; grid-template-columns:1.2fr .8fr; gap:22px; align-items:stretch;
}
.hero-panel,
.section-card,
.info-box,
.mini-card,
.table-row,
.callout,
.notice-bar{
  background:linear-gradient(180deg, rgba(10,35,67,.95), rgba(6,21,42,.96));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.hero-panel,
.section-card{border-radius:26px}
.hero-panel{padding:28px}
.hero-panel h1{font-size:clamp(34px,5vw,56px); line-height:1.02; margin:0 0 14px; letter-spacing:-.03em}
.hero-panel p{margin:0 0 22px; font-size:17px; line-height:1.72; color:var(--muted); max-width:760px}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px}
.pill-btn,.ghost-btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:46px; padding:0 20px; border-radius:999px; font-weight:800;
}
.pill-btn{background:linear-gradient(180deg, var(--gold2), #d7a822); color:#1a2439}
.ghost-btn{border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.03)}
.notice-stack{display:grid; gap:16px}
.notice-bar{border-radius:20px; padding:18px 18px 16px}
.notice-kicker{font-size:12px; text-transform:uppercase; letter-spacing:.12em; color:#8fdfff; font-weight:800; margin-bottom:8px}
.notice-bar h3{margin:0 0 6px; font-size:20px}
.notice-bar p{margin:0; color:var(--muted); line-height:1.65}
.main{padding:14px 0 58px}
.section-card{padding:26px; margin-top:26px}
.section-card:first-child{margin-top:0}
.section-head{display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:18px}
.page-title{margin:0 0 10px; font-size:42px; letter-spacing:-.03em}
.page-lead{margin:0; color:var(--muted); line-height:1.72; font-size:16px; max-width:820px}
.tabs{margin-top:22px}
.tab-buttons{display:flex; flex-wrap:wrap; gap:10px; margin:0 0 18px}
.tab-btn{
  appearance:none; border:none; cursor:pointer;
  padding:12px 18px; border-radius:999px;
  font-weight:800; font-size:14px; color:#edf5fd;
  background:rgba(3,18,38,.76); border:1px solid rgba(255,255,255,.07);
}
.tab-btn.active{background:linear-gradient(180deg,var(--gold2), #d4a720); color:#1c2539}
.tab-panel{display:none}
.tab-panel.active{display:block}
.panel-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.panel-grid.two{grid-template-columns:repeat(2,1fr)}
.mini-card,.info-box{border-radius:20px; padding:20px}
.mini-card h3,.info-box h3{margin:0 0 10px; font-size:20px}
.mini-card p,.info-box p{margin:0; color:var(--muted); line-height:1.72}
.two-col{display:grid; grid-template-columns:1.08fr .92fr; gap:18px}
.check-list{display:grid; grid-template-columns:repeat(2,1fr); gap:12px; list-style:none; padding:0; margin:0}
.check-list li{padding:16px 16px; border-radius:16px; background:rgba(255,255,255,.03); border:1px solid var(--line-soft); color:#eaf2fb; line-height:1.55}
.table-like{display:grid; gap:12px}
.table-row{display:grid; grid-template-columns:1.1fr .9fr; gap:14px; align-items:start; padding:16px 18px; border-radius:18px}
.table-row strong{font-size:15px}
.table-row span{color:var(--muted); line-height:1.6}
.callout{padding:18px 20px; border-radius:18px; border-left:4px solid var(--gold2); color:#eef5fd; line-height:1.7}
.quote-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:18px
}
.quote-box{
  border-radius:18px; padding:16px; background:rgba(255,255,255,.03); border:1px solid var(--line-soft)
}
.quote-box strong{display:block; margin-bottom:8px}
.quote-box span{color:var(--muted); font-size:14px; line-height:1.55}
.form-grid{display:grid; gap:14px}
input, textarea, select{
  width:100%; border:none; outline:none; border-radius:14px; padding:14px 16px;
  background:rgba(255,255,255,.05); color:#fff; border:1px solid rgba(255,255,255,.08)
}
textarea{min-height:130px; resize:vertical}
.notice{margin-top:14px; color:#95a9c3; font-size:13px; line-height:1.6}
.footer{
  padding:34px 0 22px;
  margin-top:24px;
  border-top:1px solid rgba(255,255,255,.06);
  color:#d6e4f4;
  background:linear-gradient(180deg, rgba(7,23,45,.55), rgba(6,19,37,.92));
}
.footer-wrap{
  border-radius:24px;
  padding:24px;
  background:linear-gradient(180deg, rgba(10,40,78,.95), rgba(6,23,45,.98));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.footer-top{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:24px;
  align-items:start;
}
.footer-brand h3,
.footer-col h4{
  margin:0 0 12px;
  color:#ffffff;
  font-weight:800;
}
.footer-brand h3{font-size:20px; letter-spacing:.02em}
.footer-brand p,
.footer-col li,
.footer-col a,
.footer-meta{
  margin:0;
  color:#c5d6ea;
  line-height:1.7;
  font-size:15px;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:4px;
}
.footer-col a:hover{color:#fff}
.footer-divider{
  height:1px;
  margin:18px 0 14px;
  background:linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,0));
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-meta{font-size:14px}
.small{font-size:14px}
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:52px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(8,28,52,.98), rgba(4,18,35,.98));
  color:#fff;
  box-shadow:var(--shadow);
  font-size:22px;
  cursor:pointer;
}
@media (max-width: 1100px){
  .site-header{flex-wrap:wrap}
  .brand{min-width:100%}
  .nav-pills{order:4; width:100%}
}
@media (max-width: 980px){
  .hero-grid,.two-col,.panel-grid,.quote-strip,.check-list,.footer-top{grid-template-columns:1fr}
  .topline{flex-direction:column; align-items:flex-start}
  .site-header{align-items:stretch}
  .book-btn{min-width:unset}
  .menu-toggle{display:inline-flex}
  .site-header{gap:10px}
  .brand{min-width:0; flex:1}
  .nav-pills{
    order:5;
    display:none;
    flex-direction:column;
    align-items:stretch;
    overflow:visible;
    padding:12px;
    gap:8px;
  }
  .nav-pills.open{display:flex}
  .nav-pills a{width:100%; text-align:left}
  .book-btn{flex:1}
  .footer-wrap{padding:20px}
}
@media (max-width: 640px){
  .container{width:min(100% - 18px, 1180px)}
  .site-shell{padding-top:12px}
  .brand{padding:10px 12px}
  .brand img{width:120px; height:44px}
  .nav-pills a{padding:10px 12px; font-size:13px}
  .hero-panel,.section-card{padding:18px}
  .hero-panel h1,.page-title{font-size:30px}
  .hero{padding-top:26px}
  .tab-buttons{gap:8px}
  .tab-btn{width:100%; text-align:center}
  .table-row{grid-template-columns:1fr}
  .footer-wrap{padding:18px}
}

.topline{display:none !important}

.site-shell{
  padding:10px 0 12px;
  position:static;
  top:0;
  z-index:20;
  backdrop-filter:blur(12px);
  background:linear-gradient(180deg, rgba(1,13,28,.96), rgba(4,20,40,.86));
  border-bottom:1px solid rgba(255,255,255,.05);
}

.stacked-header{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.hero-brand{
  width:100%;
  padding:8px 16px 6px;
  min-height:154px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(12,36,67,.98), rgba(5,18,34,.98));
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 20px 40px rgba(0,0,0,.42);
}

.hero-brand img{
  width:100%;
  max-width:1180px;
  height:400px;
  object-fit:contain;
  object-position:center;
  margin:0 auto;
  filter:brightness(1.18) contrast(1.08) drop-shadow(0 6px 22px rgba(255,255,255,.10));
}

.header-tagline{
  width:100%;
  text-align:center;
  font-size:17px;
  font-weight:800;
  line-height:1.45;
  letter-spacing:.01em;
  color:#f7fbff;
  padding:4px 14px 8px;
}

.nav-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
}

.nav-pills{
  justify-content:center;
}

@media (max-width: 980px){
  .hero-brand{
    min-height:124px;
    padding:8px 12px 6px;
  }

  .hero-brand img{
    height:108px;
  }

  .header-tagline{
    font-size:15px;
    padding:2px 6px 6px;
  }

  .nav-row{
    grid-template-columns:1fr;
  }

  .book-btn{
    width:100%;
  }
}

@media (max-width: 640px){
  .site-shell{
    padding-top:8px;
  }

  .hero-brand{
    min-height:92px;
    padding:6px 8px 4px;
    border-radius:20px;
  }

  .hero-brand img{
    height:76px;
    width:100%;
  }

  .header-tagline{
    font-size:13px;
    line-height:1.5;
    padding:0 4px 4px;
  }

  .nav-pills{
    justify-content:flex-start;
  }
}


.form-status {
  margin: 0;
  font-size: 14px;
  color: #1f2937;
}


.trip-options {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.trip-options-label {
  font-weight: 700;
  color: var(--text-primary);
}

.trip-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trip-options input[type="radio"] {
  width: auto;
  margin: 0;
}


.same-location-group {
  display: grid;
  gap: 10px;
}

.same-location-group strong {
  color: var(--text-primary);
  font-size: 15px;
}

.form-status{margin:0;color:#ffd67d;font-size:14px;line-height:1.5}
.trip-options,.same-location-group{
  display:grid;
  gap:10px;
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.trip-options label,.same-location-group label{display:flex;align-items:center;gap:10px;color:#e8f0fa;font-size:14px}
.trip-options input[type="radio"],.same-location-group input[type="radio"]{width:auto}
.trip-options-label{font-weight:700;color:#fff}
.roundtrip-fields{grid-column:1 / -1}

#nexa-chatbot-root{position:fixed;right:18px;bottom:18px;z-index:9999}
.nexa-launcher{
  display:flex;align-items:center;gap:10px;border:none;cursor:pointer;
  border-radius:999px;padding:14px 18px;background:linear-gradient(180deg,#ffa534,#f27b09);
  color:#fff;font-weight:800;box-shadow:0 18px 34px rgba(242,123,9,.34)
}
.nexa-launcher-dot{width:10px;height:10px;border-radius:50%;background:#2cff92;box-shadow:0 0 0 6px rgba(44,255,146,.16)}
.nexa-panel{
  width:min(380px, calc(100vw - 24px));max-height:min(82vh, 760px);overflow:hidden;
  margin-top:12px;border-radius:24px;background:linear-gradient(180deg, rgba(10,35,67,.98), rgba(6,21,42,.98));
  border:1px solid rgba(255,255,255,.08);box-shadow:0 24px 50px rgba(0,0,0,.45);display:grid;grid-template-rows:auto auto 1fr auto auto auto
}
.nexa-header{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;padding:18px 18px 12px;border-bottom:1px solid rgba(255,255,255,.08)}
.nexa-header h3{margin:0;font-size:22px}
.nexa-header p{margin:4px 0 0;color:#bdd0e6;font-size:13px}
.nexa-close{border:none;background:transparent;color:#fff;font-size:30px;line-height:1;cursor:pointer}
.nexa-quick-actions{display:flex;flex-wrap:wrap;gap:8px;padding:12px 16px}
.nexa-quick-actions button,.nexa-quick-actions a,.nexa-open-lead-link{
  border:none;background:rgba(255,255,255,.06);color:#fff;border-radius:999px;padding:10px 12px;font-size:13px;cursor:pointer
}
.nexa-open-lead-link{padding:0;background:none;text-decoration:underline;color:#bdd0e6}
.nexa-messages{padding:0 16px 8px;overflow:auto;display:grid;gap:10px;min-height:220px;max-height:300px}
.nexa-message{padding:12px 14px;border-radius:16px;line-height:1.55;font-size:14px;white-space:pre-wrap}
.nexa-message.assistant{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.06);color:#f4f8fd}
.nexa-message.user{background:linear-gradient(180deg,var(--gold2), #d4a720);color:#1d2438;margin-left:36px}
.nexa-message.typing{opacity:.8;font-style:italic}
.nexa-input-row{display:grid;grid-template-columns:1fr auto auto;gap:8px;padding:12px 16px 10px;border-top:1px solid rgba(255,255,255,.08)}
.nexa-input-row input{margin:0}
.nexa-input-row button{border:none;border-radius:14px;padding:0 14px;background:rgba(255,255,255,.08);color:#fff;cursor:pointer}
.nexa-input-row button[type="submit"]{background:linear-gradient(180deg,#ffa534,#f27b09)}
.nexa-tools{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:0 16px 12px;color:#d4e2f4;font-size:13px}
.nexa-tools label{display:flex;align-items:center;gap:8px}
.nexa-tools input[type="checkbox"]{width:auto}
.nexa-lead-form{display:grid;gap:10px;padding:14px 16px 18px;border-top:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)}
.nexa-lead-form h4{margin:0 0 2px}
.nexa-lead-form textarea{min-height:84px}
.nexa-lead-actions{display:flex;gap:10px;flex-wrap:wrap}
.nexa-lead-actions button{border:none;border-radius:14px;padding:12px 14px;color:#fff;cursor:pointer;background:rgba(255,255,255,.08)}
.nexa-lead-actions button[type="submit"]{background:linear-gradient(180deg,#ffa534,#f27b09)}
.nexa-lead-status{margin:0;color:#ffd67d;font-size:13px;line-height:1.5}
@media (max-width: 600px){
  #nexa-chatbot-root{right:12px;left:12px;bottom:12px}
  .nexa-launcher{width:100%;justify-content:center}
  .nexa-panel{width:100%}
}

/* Chatbot */
#nexa-chatbot-root{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}
.nexa-launcher{
  border:none;
  border-radius:999px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-weight:800;
  color:#fff;
  background:linear-gradient(180deg,#ffa534,#f27b09);
  box-shadow:0 14px 30px rgba(242,123,9,.28);
}
.nexa-launcher-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 6px rgba(255,255,255,.18);
}
.nexa-panel{
  width:min(380px, calc(100vw - 22px));
  max-height:min(78vh, 720px);
  overflow:auto;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(10,35,67,.98), rgba(6,21,42,.98));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}
.nexa-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nexa-header h3{margin:0;font-size:20px}
.nexa-header p{margin:4px 0 0;color:#bfd0e4;font-size:13px}
.nexa-header-actions{display:flex;align-items:center;gap:8px}
.nexa-minimize,.nexa-close{
  width:34px;height:34px;border-radius:10px;border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);color:#fff;cursor:pointer;font-size:18px;
}
.nexa-quick-actions{
  display:flex;flex-wrap:wrap;gap:8px;padding:12px 16px 0;
}
.nexa-quick-actions button,.nexa-quick-actions a,.nexa-open-form{
  border:none;cursor:pointer;border-radius:999px;padding:10px 14px;font-weight:700;
  background:rgba(255,255,255,.06);color:#fff;
}
.nexa-quick-actions a{text-decoration:none}
.nexa-open-form{background:linear-gradient(180deg, var(--gold2), #d7a822); color:#1c2539}
.nexa-messages{
  display:flex;flex-direction:column;gap:10px;padding:14px 16px;max-height:340px;overflow:auto;
}
.nexa-message{
  padding:12px 14px;border-radius:16px;line-height:1.6;font-size:14px;white-space:pre-wrap;
}
.nexa-message.assistant{background:rgba(255,255,255,.06);color:#eef5fd;border-top-left-radius:6px}
.nexa-message.user{background:linear-gradient(180deg,#ffa534,#f27b09);color:#fff;margin-left:48px;border-top-right-radius:6px}
.nexa-message.typing{opacity:.8;font-style:italic}
.nexa-form-cta{
  margin:0 16px 12px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.nexa-form-cta p{margin:0 0 10px;color:#d7e4f3;line-height:1.6}
.nexa-input-row{
  display:grid;grid-template-columns:1fr auto;gap:10px;padding:0 16px 16px;
}
.nexa-input-row input{
  min-width:0;
}
.nexa-input-row button,.nexa-lead-actions button{
  border:none;border-radius:14px;padding:12px 16px;cursor:pointer;font-weight:800;
}
.nexa-input-row button,.nexa-lead-actions button[type="submit"]{
  background:linear-gradient(180deg,#ffa534,#f27b09);color:#fff;
}
.nexa-lead-form{
  display:grid;gap:10px;padding:0 16px 16px;
}
.nexa-lead-form h4{margin:6px 0 2px}
.nexa-lead-actions{display:flex;gap:10px;flex-wrap:wrap}
.nexa-cancel-lead{background:rgba(255,255,255,.06);color:#fff}
.nexa-lead-status{margin:0;color:#cddded;font-size:13px;line-height:1.6}
@media (max-width: 640px){
  #nexa-chatbot-root{right:10px;left:10px;bottom:10px;align-items:stretch}
  .nexa-launcher{align-self:flex-end}
  .nexa-panel{width:100%}
}


/* chatbot hard fix */
#nexa-chatbot-root{
  position:fixed !important;
  right:18px !important;
  bottom:18px !important;
  z-index:99999 !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-end !important;
  gap:12px !important;
}
#nexa-chatbot-root .nexa-panel[hidden],
#nexa-chatbot-root .nexa-lead-form[hidden],
#nexa-chatbot-root .nexa-form-cta[hidden]{
  display:none !important;
}
#nexa-chatbot-root .nexa-launcher{
  order:2;
}
#nexa-chatbot-root .nexa-panel{
  order:1;
  width:min(380px, calc(100vw - 24px)) !important;
  max-height:min(82vh, 760px) !important;
  overflow:hidden !important;
  display:grid !important;
  grid-template-rows:auto auto 1fr auto auto !important;
}
#nexa-chatbot-root .nexa-messages{
  min-height:220px !important;
  max-height:300px !important;
  overflow:auto !important;
}
#nexa-chatbot-root .nexa-lead-form{
  max-height:40vh;
  overflow:auto;
}
@media (max-width: 640px){
  #nexa-chatbot-root{
    right:10px !important;
    left:10px !important;
    bottom:10px !important;
    align-items:stretch !important;
  }
  #nexa-chatbot-root .nexa-launcher{
    align-self:flex-end;
  }
  #nexa-chatbot-root .nexa-panel{
    width:100% !important;
  }
}




/* chatbot final fixed */

#nexa-chatbot-root{position:fixed !important;right:18px !important;bottom:18px !important;left:auto !important;z-index:999999 !important;display:flex !important;flex-direction:column !important;align-items:flex-end !important;gap:12px !important;font-family:inherit !important;}
#nexa-chatbot-root .nexa-panel[hidden],#nexa-chatbot-root .nexa-lead-form[hidden],#nexa-chatbot-root .nexa-form-cta[hidden]{display:none !important;}
#nexa-chatbot-root .nexa-launcher{display:inline-flex !important;align-items:center !important;gap:10px !important;padding:14px 18px !important;border:none !important;border-radius:999px !important;background:linear-gradient(180deg,#ffa534,#f27b09) !important;color:#fff !important;box-shadow:0 18px 40px rgba(0,0,0,.28) !important;cursor:pointer !important;position:relative !important;z-index:2 !important;}
#nexa-chatbot-root .nexa-launcher-dot{width:10px !important;height:10px !important;border-radius:50% !important;background:#fff !important;box-shadow:0 0 0 6px rgba(255,255,255,.18) !important;}
#nexa-chatbot-root .nexa-panel{display:grid !important;grid-template-rows:auto auto minmax(160px,1fr) auto auto !important;width:min(380px,calc(100vw - 24px)) !important;max-height:min(82vh,760px) !important;overflow:hidden !important;border-radius:22px !important;background:linear-gradient(180deg,rgba(10,35,67,.98),rgba(6,21,42,.98)) !important;border:1px solid rgba(255,255,255,.08) !important;box-shadow:0 22px 60px rgba(0,0,0,.38) !important;}
#nexa-chatbot-root .nexa-header{display:flex !important;justify-content:space-between !important;align-items:flex-start !important;gap:12px !important;padding:16px !important;border-bottom:1px solid rgba(255,255,255,.08) !important;}
#nexa-chatbot-root .nexa-header h3{margin:0 !important;font-size:20px !important;}
#nexa-chatbot-root .nexa-header p{margin:4px 0 0 !important;color:#bfd0e4 !important;font-size:13px !important;}
#nexa-chatbot-root .nexa-header-actions{display:flex !important;gap:8px !important;}
#nexa-chatbot-root .nexa-minimize,#nexa-chatbot-root .nexa-close{width:34px !important;height:34px !important;border-radius:10px !important;border:1px solid rgba(255,255,255,.08) !important;background:rgba(255,255,255,.04) !important;color:#fff !important;cursor:pointer !important;font-size:18px !important;}
#nexa-chatbot-root .nexa-quick-actions{display:flex !important;flex-wrap:wrap !important;gap:8px !important;padding:12px 16px 0 !important;}
#nexa-chatbot-root .nexa-quick-actions button,#nexa-chatbot-root .nexa-quick-actions a,#nexa-chatbot-root .nexa-open-form{border:none !important;cursor:pointer !important;border-radius:999px !important;padding:10px 14px !important;font-weight:700 !important;background:rgba(255,255,255,.06) !important;color:#fff !important;text-decoration:none !important;}
#nexa-chatbot-root .nexa-open-form,#nexa-chatbot-root .nexa-input-row button,#nexa-chatbot-root .nexa-lead-actions button[type="submit"]{background:linear-gradient(180deg,#ffa534,#f27b09) !important;color:#fff !important;}
#nexa-chatbot-root .nexa-messages{display:flex !important;flex-direction:column !important;gap:10px !important;padding:14px 16px !important;min-height:220px !important;max-height:320px !important;overflow:auto !important;}
#nexa-chatbot-root .nexa-message{padding:12px 14px !important;border-radius:16px !important;line-height:1.6 !important;font-size:14px !important;white-space:pre-wrap !important;}
#nexa-chatbot-root .nexa-message.assistant{background:rgba(255,255,255,.06) !important;color:#eef5fd !important;border-top-left-radius:6px !important;}
#nexa-chatbot-root .nexa-message.user{background:linear-gradient(180deg,#ffa534,#f27b09) !important;color:#fff !important;margin-left:48px !important;border-top-right-radius:6px !important;}
#nexa-chatbot-root .nexa-message.typing{opacity:.8 !important;font-style:italic !important;}
#nexa-chatbot-root .nexa-form-cta{margin:0 16px 12px !important;padding:14px !important;border-radius:16px !important;background:rgba(255,255,255,.05) !important;border:1px solid rgba(255,255,255,.08) !important;}
#nexa-chatbot-root .nexa-form-cta p{margin:0 0 10px !important;color:#d7e4f3 !important;line-height:1.6 !important;}
#nexa-chatbot-root .nexa-input-row{display:grid !important;grid-template-columns:1fr auto !important;gap:10px !important;padding:0 16px 16px !important;border-top:none !important;}
#nexa-chatbot-root .nexa-input-row input,#nexa-chatbot-root .nexa-lead-form input,#nexa-chatbot-root .nexa-lead-form textarea{width:100% !important;min-width:0 !important;}
#nexa-chatbot-root .nexa-input-row button,#nexa-chatbot-root .nexa-lead-actions button{border:none !important;border-radius:14px !important;padding:12px 16px !important;cursor:pointer !important;font-weight:800 !important;}
#nexa-chatbot-root .nexa-lead-form{display:grid !important;gap:10px !important;padding:0 16px 16px !important;max-height:40vh !important;overflow:auto !important;}
#nexa-chatbot-root .nexa-lead-form h4{margin:6px 0 2px !important;}
#nexa-chatbot-root .nexa-lead-actions{display:flex !important;gap:10px !important;flex-wrap:wrap !important;}
#nexa-chatbot-root .nexa-cancel-lead{background:rgba(255,255,255,.06) !important;color:#fff !important;}
#nexa-chatbot-root .nexa-lead-status{margin:0 !important;color:#cddded !important;font-size:13px !important;line-height:1.6 !important;}
@media (max-width:640px){#nexa-chatbot-root{right:10px !important;left:10px !important;bottom:10px !important;align-items:stretch !important;}#nexa-chatbot-root .nexa-panel{width:100% !important;}#nexa-chatbot-root .nexa-launcher{align-self:flex-end !important;}}


/* chatbot v5 hard embed */
#nexa-chatbot-root{position:fixed!important;right:18px!important;bottom:18px!important;left:auto!important;z-index:2147483000!important;display:flex!important;flex-direction:column!important;align-items:flex-end!important;gap:12px!important;font-family:inherit!important}#nexa-chatbot-root .nexa-panel[hidden],#nexa-chatbot-root .nexa-lead-form[hidden],#nexa-chatbot-root .nexa-form-cta[hidden]{display:none!important}#nexa-chatbot-root .nexa-launcher{display:inline-flex!important;align-items:center!important;gap:10px!important;padding:14px 18px!important;border:none!important;border-radius:999px!important;background:linear-gradient(180deg,#ffa534,#f27b09)!important;color:#fff!important;box-shadow:0 18px 40px rgba(0,0,0,.28)!important;cursor:pointer!important;position:relative!important;z-index:2!important}#nexa-chatbot-root .nexa-launcher-dot{width:10px!important;height:10px!important;border-radius:50%!important;background:#fff!important;box-shadow:0 0 0 6px rgba(255,255,255,.18)!important}#nexa-chatbot-root .nexa-panel{display:grid!important;grid-template-rows:auto auto minmax(160px,1fr) auto auto!important;width:min(380px,calc(100vw - 24px))!important;max-height:min(82vh,760px)!important;overflow:hidden!important;border-radius:22px!important;background:linear-gradient(180deg,rgba(10,35,67,.98),rgba(6,21,42,.98))!important;border:1px solid rgba(255,255,255,.08)!important;box-shadow:0 22px 60px rgba(0,0,0,.38)!important}#nexa-chatbot-root .nexa-header{display:flex!important;justify-content:space-between!important;align-items:flex-start!important;gap:12px!important;padding:16px!important;border-bottom:1px solid rgba(255,255,255,.08)!important}#nexa-chatbot-root .nexa-header h3{margin:0!important;font-size:20px!important}#nexa-chatbot-root .nexa-header p{margin:4px 0 0!important;color:#bfd0e4!important;font-size:13px!important}#nexa-chatbot-root .nexa-header-actions{display:flex!important;gap:8px!important}#nexa-chatbot-root .nexa-minimize,#nexa-chatbot-root .nexa-close{width:34px!important;height:34px!important;border-radius:10px!important;border:1px solid rgba(255,255,255,.08)!important;background:rgba(255,255,255,.04)!important;color:#fff!important;cursor:pointer!important;font-size:18px!important}#nexa-chatbot-root .nexa-quick-actions{display:flex!important;flex-wrap:wrap!important;gap:8px!important;padding:12px 16px 0!important}#nexa-chatbot-root .nexa-quick-actions button,#nexa-chatbot-root .nexa-quick-actions a,#nexa-chatbot-root .nexa-open-form{border:none!important;cursor:pointer!important;border-radius:999px!important;padding:10px 14px!important;font-weight:700!important;background:rgba(255,255,255,.06)!important;color:#fff!important;text-decoration:none!important}#nexa-chatbot-root .nexa-open-form,#nexa-chatbot-root .nexa-input-row button,#nexa-chatbot-root .nexa-lead-actions button[type="submit"]{background:linear-gradient(180deg,#ffa534,#f27b09)!important;color:#fff!important}#nexa-chatbot-root .nexa-messages{display:flex!important;flex-direction:column!important;gap:10px!important;padding:14px 16px!important;min-height:220px!important;max-height:320px!important;overflow:auto!important}#nexa-chatbot-root .nexa-message{padding:12px 14px!important;border-radius:16px!important;line-height:1.6!important;font-size:14px!important;white-space:pre-wrap!important}#nexa-chatbot-root .nexa-message.assistant{background:rgba(255,255,255,.06)!important;color:#eef5fd!important;border-top-left-radius:6px!important}#nexa-chatbot-root .nexa-message.user{background:linear-gradient(180deg,#ffa534,#f27b09)!important;color:#fff!important;margin-left:48px!important;border-top-right-radius:6px!important}#nexa-chatbot-root .nexa-message.typing{opacity:.8!important;font-style:italic!important}#nexa-chatbot-root .nexa-form-cta{margin:0 16px 12px!important;padding:14px!important;border-radius:16px!important;background:rgba(255,255,255,.05)!important;border:1px solid rgba(255,255,255,.08)!important}#nexa-chatbot-root .nexa-form-cta p{margin:0 0 10px!important;color:#d7e4f3!important;line-height:1.6!important}#nexa-chatbot-root .nexa-input-row{display:grid!important;grid-template-columns:1fr auto!important;gap:10px!important;padding:0 16px 16px!important;border-top:none!important}#nexa-chatbot-root .nexa-input-row input,#nexa-chatbot-root .nexa-lead-form input,#nexa-chatbot-root .nexa-lead-form textarea{width:100%!important;min-width:0!important}#nexa-chatbot-root .nexa-input-row button,#nexa-chatbot-root .nexa-lead-actions button{border:none!important;border-radius:14px!important;padding:12px 16px!important;cursor:pointer!important;font-weight:800!important}#nexa-chatbot-root .nexa-lead-form{display:grid!important;gap:10px!important;padding:0 16px 16px!important;max-height:40vh!important;overflow:auto!important}#nexa-chatbot-root .nexa-lead-form h4{margin:6px 0 2px!important}#nexa-chatbot-root .nexa-lead-actions{display:flex!important;gap:10px!important;flex-wrap:wrap!important}#nexa-chatbot-root .nexa-cancel-lead{background:rgba(255,255,255,.06)!important;color:#fff!important}#nexa-chatbot-root .nexa-lead-status{margin:0!important;color:#cddded!important;font-size:13px!important;line-height:1.6!important}@media (max-width:640px){#nexa-chatbot-root{right:10px!important;left:10px!important;bottom:10px!important;align-items:stretch!important}#nexa-chatbot-root .nexa-panel{width:100%!important}#nexa-chatbot-root .nexa-launcher{align-self:flex-end!important}}
