/* ═══════════════════════════════════════════
   UVISION IPTV — Static Site Extra Styles
   Supplements /assets/css/styles.css
═══════════════════════════════════════════ */

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-logo img {
    height: 340px;
  }
}


/* ── WhatsApp Float ── */
.wa-btn {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  background: #25D366; color: #fff; font-size: 26px;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── Navbar white text fix on dark nav ── */
.nav-links a { color: rgba(255,255,255,0.75); }
.nav-links a:hover, .nav-links a.active { color: var(--gold2); }
.logo-text strong { color: var(--cream) !important; }

/* ── Trial form section ── */
.trial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trial-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,62,0.12); border: 1px solid rgba(200,150,62,0.3);
  color: var(--gold2); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 24px;
}
.trial-mockup {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; background: var(--dark2);
  box-shadow: var(--shadow-lg);
}
.trial-form h3 {
  font-family: var(--font-d); font-size: clamp(28px,3.5vw,44px);
  font-weight: 800; color: var(--dark); line-height: 1.15;
  margin-bottom: 12px;
}
.trial-form p { color: var(--text2); margin-bottom: 32px; font-size: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--beige3); border-radius: 12px;
  font-family: var(--font-b); font-size: 15px; color: var(--text);
  background: var(--white); transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,62,0.12);
}
#formMessage { font-size: 13px; text-align: center; margin-top: 12px; min-height: 20px; }

/* ── Privacy / Terms page ── */
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-d); font-size: 24px; font-weight: 700; color: var(--dark); margin: 40px 0 12px; }
.legal-content p, .legal-content li { color: var(--text2); font-size: 15px; line-height: 1.9; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; list-style: disc; }

/* ── Channels logo strip ── */
.logo-strip { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 48px; }
.logo-strip img {
  height: 48px; object-fit: contain;
  filter: brightness(0) invert(0.6);
  transition: filter 0.3s, transform 0.3s;
  cursor: default;
}
.logo-strip img:hover { filter: brightness(1); transform: scale(1.08); }

/* ── 404 page ── */
.not-found-wrap { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; background: var(--dark); }
.not-found-wrap .code { font-family: var(--font-d); font-size: clamp(80px,15vw,180px); font-weight: 800; color: transparent; -webkit-text-stroke: 2px var(--gold); line-height: 1; margin-bottom: 16px; }
.not-found-wrap h1 { font-family: var(--font-d); font-size: clamp(24px,3vw,40px); color: var(--cream); margin-bottom: 16px; }
.not-found-wrap p { color: rgba(255,255,255,0.45); font-size: 17px; margin-bottom: 36px; }

/* ── Responsive extras ── */
@media (max-width: 768px) {
  .trial-inner { grid-template-columns: 1fr; gap: 40px; }
  .trial-visual { display: none; }
}

/* ── Mobile nav ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 28px 20px;
  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 15px; font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold2); }

@media (max-width: 860px) {
  .nav-links, #navbar > .container > .btn { display: none !important; }
  #hamburger { display: flex !important; }
}
@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
}

/* ── Channels logo responsive ── */
@media (max-width: 640px) {
  .logo-strip img { height: 36px; }
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
