/* HotTours KZ — lead-capture popup (standalone, no dependencies) */
#htp-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  will-change: opacity;
}
#htp-overlay.htp-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease;
}
#htp-overlay .htp-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 14px;
  padding: 34px 30px 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  font-family: Inter, system-ui, sans-serif;
  color: #0f172a;
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.28s ease;
  will-change: transform;
}
#htp-overlay.htp-open .htp-box {
  transform: translateY(0) scale(1);
}
#htp-overlay .htp-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
#htp-overlay .htp-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}
#htp-overlay .htp-tag {
  display: inline-block;
  background: #fff3ec;
  color: #ea580c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
#htp-overlay .htp-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #0e7490;
}
#htp-overlay .htp-text {
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 22px;
}
#htp-overlay .htp-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: #ea580c;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
#htp-overlay .htp-btn:hover {
  background: #c2410c;
}
#htp-overlay .htp-btn:active {
  transform: scale(0.98);
}
#htp-overlay .htp-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0e7490;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px 6px;
}
#htp-overlay .htp-link:hover {
  text-decoration: underline;
}
@media (max-width: 520px) {
  #htp-overlay {
    align-items: flex-end;
    padding: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  #htp-overlay .htp-box {
    max-width: none;
    padding: 26px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    transform: translateY(24px);
  }
  #htp-overlay.htp-open .htp-box {
    transform: translateY(0);
  }
  #htp-overlay .htp-title {
    font-size: 21px;
  }
}
