/* ════════════════════════════════════════
   FOOTER — Gold Dark Luxury
   Matches homepage aesthetic:
   Bebas Neue + Outfit, void bg, gold accents
════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--void, #05060a);
  border-top: 1px solid rgba(201,168,76,.12);
  font-family: var(--ff-body, 'Be Vietnam Pro', sans-serif);
  overflow: hidden;
}

/* Top glow line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,168,76,.5) 30%,
    rgba(201,168,76,.5) 70%,
    transparent);
  pointer-events: none;
}

/* Radial glow behind footer */
.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Main grid ── */
.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 48px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  position: relative; z-index: 1;
}

/* ── Brand column ── */
.footer-brand {}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-gem {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #c9a84c, #ead46e);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  flex-shrink: 0;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer-logo-name {
  font-family: var(--ff-display, 'Be Vietnam Pro', sans-serif);
  font-size: 1.55rem;
  letter-spacing: .08em;
  color: var(--white, #eef0f8);
  line-height: 1;
}

.footer-tagline {
  font-size: .88rem;
  color: var(--mid, #6e7890);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Status pill */
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #22c55e;
  margin-bottom: 28px;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .5; }
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid, #6e7890);
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.social-btn:hover {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.3);
  color: #c9a84c;
  transform: translateY(-3px);
}
.social-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ── Nav columns ── */
.footer-col-title {
  font-family: var(--ff-display, 'Be Vietnam Pro', sans-serif);
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--white, #eef0f8);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 1px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  transition: width .3s;
}
.footer-col:hover .footer-col-title::after {
  width: 40px;
}

.footer-nav {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-nav li a {
  display: flex; align-items: center; gap: 8px;
  font-size: .855rem;
  color: var(--mid, #6e7890);
  font-weight: 400;
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.footer-nav li a::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(201,168,76,.3);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.footer-nav li a:hover {
  color: #c9a84c;
  gap: 12px;
}
.footer-nav li a:hover::before {
  background: #c9a84c;
  transform: scale(1.4);
}

/* ── Newsletter / CTA column ── */
.footer-cta-col {}

.footer-cta-box {
  background: linear-gradient(135deg,
    rgba(201,168,76,.07) 0%,
    rgba(201,168,76,.03) 100%);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.footer-cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
}
.footer-cta-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #c9a84c;
  margin-bottom: 8px;
}
.footer-cta-heading {
  font-family: var(--ff-display, 'Be Vietnam Pro', sans-serif);
  font-size: 1.55rem;
  letter-spacing: .06em;
  line-height: 1.05;
  color: var(--white, #eef0f8);
  margin-bottom: 10px;
}
.footer-cta-text {
  font-size: .8rem;
  color: var(--mid, #6e7890);
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 300;
}
.footer-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #c9a84c, #ead46e);
  color: #06070a;
  font-family: var(--ff-body, 'Be Vietnam Pro', sans-serif);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 12px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.footer-cta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 25%, rgba(255,255,255,.18) 50%, transparent 75%);
  transform: translateX(-200%);
  transition: transform .55s;
}
.footer-cta-btn:hover::before { transform: translateX(200%); }
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.35);
}
.footer-cta-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.footer-cta-note {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: .72rem;
  color: rgba(110,120,144,.6);
}
.footer-cta-note::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
}

/* ── Divider ── */
.footer-divider {
  max-width: 1240px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,.06) 20%, rgba(255,255,255,.06) 80%, transparent);
  position: relative; z-index: 1;
}

/* ── Bottom bar ── */
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(110,120,144,.55);
  font-weight: 300;
}
.footer-copy strong {
  color: rgba(201,168,76,.7);
  font-weight: 600;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 3px;
}
.fbadge-gold {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.15);
  color: rgba(201,168,76,.7);
}
.fbadge-green {
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.15);
  color: rgba(34,197,94,.7);
}
.footer-badge svg { width: 10px; height: 10px; fill: currentColor; }

.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a {
  font-size: .74rem;
  color: rgba(110,120,144,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: #c9a84c; }

/* ── Hex watermark ── */
.footer-hex-bg {
  position: absolute;
  bottom: -20px; right: -40px;
  font-family: var(--ff-display, 'Be Vietnam Pro', sans-serif);
  font-size: 16rem;
  letter-spacing: .04em;
  color: rgba(201,168,76,.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main { gap: 36px; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 20px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta-col { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom-links { display: none; }
}

/* ═══ POPUP & CHATBOT STYLES ═══ */

/* ── Promo Popup ── */
#promoPopup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8888;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  pointer-events: none;
}
#promoPopup.show { display: flex; }
.pp-card {
  pointer-events: all;
  position: relative;
  background: linear-gradient(145deg, #0e1220 0%, #141826 100%);
  border: 1px solid rgba(255,216,60,0.3);
  border-radius: 20px;
  padding: 28px 28px 24px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,216,60,0.08);
  animation: ppSlideIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
  overflow: hidden;
}
@keyframes ppSlideIn {
  from { opacity:0; transform: translateY(30px) scale(0.95); }
  to   { opacity:1; transform: none; }
}
.pp-card.closing {
  animation: ppSlideOut 0.3s ease forwards;
}
@keyframes ppSlideOut {
  to { opacity:0; transform: translateY(20px) scale(0.95); }
}
.pp-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255,216,60,0.1), transparent);
  pointer-events: none;
}
.pp-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.pp-close:hover { background: rgba(255,92,106,0.15); border-color: rgba(255,92,106,0.3); color: #ff5c6a; }

.pp-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd83c;
  background: rgba(255,216,60,0.1);
  border: 1px solid rgba(255,216,60,0.2);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.pp-label-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #ffd83c;
  box-shadow: 0 0 6px rgba(255,216,60,0.7);
  animation: labelDotPulse 1.5s ease-in-out infinite;
}
@keyframes labelDotPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.pp-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}
.pp-title em { font-style:normal; color: #ffd83c; }
.pp-sub {
  font-size: 0.82rem;
  color: rgba(180,184,210,0.7);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Countdown timer */
.pp-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.pp-countdown-label {
  font-size: 0.72rem;
  color: rgba(180,184,210,0.5);
  white-space: nowrap;
}
.pp-timer-blocks {
  display: flex;
  gap: 5px;
}
.pp-tblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 4px 8px;
  min-width: 38px;
}
.pp-tnum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #ffd83c;
  line-height: 1.2;
}
.pp-tsep {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,216,60,0.4);
  line-height: 1.5;
}
.pp-tlbl {
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(180,184,210,0.4);
  margin-top: 1px;
}

/* Bonus row */
.pp-bonus-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,216,60,0.07);
  border: 1px solid rgba(255,216,60,0.2);
  border-radius: 11px;
  margin-bottom: 16px;
}
.pp-bonus-icon { font-size: 1.5rem; flex-shrink: 0; }
.pp-bonus-text b {
  display: block;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #ffd83c;
}
.pp-bonus-text span {
  font-size: 0.72rem;
  color: rgba(255,216,60,0.55);
}

/* CTA Button */
.pp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #ffd83c, #ffb800);
  color: #0a0c12;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,184,0,0.35);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  position: relative;
  overflow: hidden;
}
.pp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}
.pp-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,184,0,0.45); filter: brightness(1.05); }
.pp-skip {
  text-align: center;
  margin-top: 10px;
  font-size: 0.72rem;
  color: rgba(107,117,145,0.5);
  cursor: pointer;
  transition: color 0.2s;
}
.pp-skip:hover { color: rgba(180,184,210,0.6); }

@media (max-width: 480px) {
  #promoPopup { padding: 12px; }
  .pp-card { max-width: 100%; }
}
