/* =========================================
   CHAT CORE (Zero-G Engine)
   ========================================= */
.chat-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  font-family: 'General Sans', sans-serif;
}

.chat-bubble {
  width: 60px;
  height: 60px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--transit);
}

.chat-bubble:hover {
  transform: scale(1.05);
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 520px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  border: 1px solid #000000;
  overflow: hidden;
}

.chat-window.active {
  display: flex;
}

.chat-header {
  padding: 24px;
  background: #000;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.chat-thread {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
}

.chat-msg.bot {
  background: #F2F2F2;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #000;
}

.chat-msg.user {
  background: #000;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.typing {
  font-style: italic;
  opacity: 0.5;
  font-size: 12px;
  margin-top: 5px;
  display: none;
  padding-left: 5px;
}

.typing.active {
  display: block;
}

.chat-input-wrap {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 12px;
}

.chat-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 16px;
}

.chat-input-wrap button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.chat-input-wrap button:hover {
  opacity: 0.8;
}

/* =========================================
   CONTACT OVERLAY Styles
   ========================================= */
#contactOverlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 20000;
  display: none;
  overflow-y: auto;
  padding: 80px 24px;
}

#contactOverlay.show {
  display: block;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 24px;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 16px;
  font-family: 'General Sans', sans-serif;
  margin-bottom: 30px;
  transition: all 0.3s var(--transit);
}

.contact-form input:focus {
  border-color: #000;
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

.dropdown-trigger {
  width: 100%;
  padding: 24px;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 16px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s var(--transit);
}

.dropdown-menu {
  display: none;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 20px;
}

.dropdown-menu div {
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.2s;
}


/* ===== VALENTINE MOVING PROMO BANNER ===== */

#promoBanner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: linear-gradient(90deg, #ff6a00, #ff8c00);
  color: white;
  display: none;
  align-items: center;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

body.promo-active #promoBanner {
  display: flex;
}

/* Desktop Fix: Banner stays at top, Header moves down */
body.promo-active header {
  top: 55px;
}

body.promo-active {
  padding-top: 155px;
  /* banner 55px + header 100px */
}

/* Mobile Fix: Header stays at top, Banner moves below it */
@media (max-width: 768px) {
  body.promo-active header {
    top: 0;
    z-index: 10001;
    /* Keep header above banner scroll */
  }

  body.promo-active #promoBanner {
    top: 80px;
    /* below mobile header (80px) */
    z-index: 10000;
  }

  body.promo-active {
    padding-top: 135px;
    /* header 80px + banner 55px */
  }
}


.promo-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 16px;
  animation: promoScroll 20s linear infinite;
}

.promo-track span {
  padding-right: 50px;
  /* Gap between the duplicate texts */
}

@keyframes promoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}