/* =================================================== PREMIUM HERO SECTION tvi-ph-* =================================================== */
.tvi-ph-section {
  position: relative;
  background: #020d1f;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
  width: 100%;
}
.tvi-ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.tvi-ph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: tvi-orb-pulse 8s ease-in-out infinite;
}
.tvi-ph-orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 100, 255, 0.22), transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.tvi-ph-orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.15), transparent 70%);
  bottom: -80px;
  right: 10%;
  animation-delay: 3s;
}
.tvi-ph-orb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(80, 0, 255, 0.12), transparent 70%);
  top: 40%;
  right: 30%;
  animation-delay: 5s;
}
@keyframes tvi-orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}
.tvi-ph-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  opacity: 0.6;
}
.tvi-ph-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 140, 255, 0.55);
  animation: tvi-particle-float linear infinite;
}
.tvi-ph-p1 {
  width: 8px;
  height: 8px;
  left: 8%;
  top: 20%;
  animation-duration: 12s;
  animation-delay: 0s;
}
.tvi-ph-p2 {
  width: 5px;
  height: 5px;
  left: 18%;
  top: 70%;
  animation-duration: 15s;
  animation-delay: 2s;
  background: rgba(0, 220, 255, 0.6);
}
.tvi-ph-p3 {
  width: 10px;
  height: 10px;
  left: 72%;
  top: 12%;
  animation-duration: 10s;
  animation-delay: 1s;
}
.tvi-ph-p4 {
  width: 6px;
  height: 6px;
  left: 85%;
  top: 60%;
  animation-duration: 18s;
  animation-delay: 4s;
  background: rgba(120, 80, 255, 0.6);
}
.tvi-ph-p5 {
  width: 4px;
  height: 4px;
  left: 50%;
  top: 85%;
  animation-duration: 14s;
  animation-delay: 3s;
}
.tvi-ph-p6 {
  width: 7px;
  height: 7px;
  left: 35%;
  top: 30%;
  animation-duration: 16s;
  animation-delay: 1.5s;
  background: rgba(0, 255, 180, 0.5);
}
@keyframes tvi-particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120px) translateX(30px);
    opacity: 0;
  }
}
.tvi-ph-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tvi-ph-left {
  animation: tvi-ph-fadein-left 0.9s ease both;
}
@keyframes tvi-ph-fadein-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.tvi-ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 120, 255, 0.12);
  border: 1px solid rgba(0, 140, 255, 0.35);
  color: #5bbcff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.tvi-ph-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 8px #00d4ff;
  animation: tvi-dot-blink 1.6s ease-in-out infinite;
}
@keyframes tvi-dot-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.tvi-ph-heading {
  font-size: 56px;
  font-weight: 800;
  line-height: 72px;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.tvi-ph-grad {
  background: linear-gradient(90deg, #0088ff, #00d4ff, #0055ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: tvi-grad-move 4s linear infinite;
}
@keyframes tvi-grad-move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.tvi-ph-sub {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #94a7c4;
    margin-bottom: 28px;
    max-width: 520px;
}
.tvi-ph-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.tvi-ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8d4f0;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 40px;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.tvi-ph-tag:hover {
  background: rgba(0, 120, 255, 0.18);
  border-color: rgba(0, 140, 255, 0.45);
  color: #5bbcff;
}
.tvi-ph-tag i {
  color: #0099ff;
  font-size: 12px;
}
.tvi-ph-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tvi-ph-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #005ce6, #0099ff);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 30px rgba(0, 120, 255, 0.45);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.tvi-ph-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 120, 255, 0.55);
  color: #fff !important;
}
.tvi-ph-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #5bbcff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 150, 255, 0.5);
  text-decoration: none !important;
  transition: all 0.25s;
}
.tvi-ph-btn-outline:hover {
  background: rgba(0, 120, 255, 0.15);
  border-color: #0099ff;
  color: #fff !important;
}
.tvi-ph-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  transition:
    background 0.25s,
    transform 0.25s;
}
.tvi-ph-btn-wa:hover {
  background: #1aad54;
  transform: translateY(-2px);
  color: #fff !important;
}
.tvi-ph-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  width: fit-content;
  margin-inline: auto;
  margin-block-start: 20px;
}
.tvi-ph-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tvi-ph-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.tvi-ph-stat-plus {
  color: #0099ff;
  font-size: 22px;
}
.tvi-ph-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: #7a9bbd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.tvi-ph-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}
.tvi-ph-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: tvi-ph-fadein-right 0.9s ease 0.2s both;
}
@keyframes tvi-ph-fadein-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.tvi-ph-img-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(0, 140, 255, 0.2);
  animation: tvi-ring-spin 20s linear infinite;
}
.tvi-ph-img-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0099ff;
  box-shadow: 0 0 12px #0099ff;
  transform: translateX(-50%);
}
@keyframes tvi-ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.tvi-ph-img-wrap {
  position: relative;
  z-index: 2;
}
.tvi-ph-img {
  max-width: 100%;
  width: 460px;
  filter: drop-shadow(0 24px 60px rgba(0, 100, 255, 0.25));
  animation: tvi-img-float 5s ease-in-out infinite;
}
@keyframes tvi-img-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.tvi-ph-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 20, 45, 0.85);
  border: 1px solid rgba(0, 140, 255, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 18px;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.tvi-ph-fc1 {
  top: 5%;
  left: -30px;
  animation: tvi-fc-float1 4s ease-in-out infinite;
}
.tvi-ph-fc2 {
  bottom: 8%;
  right: -20px;
  animation: tvi-fc-float2 5s ease-in-out infinite;
}
@keyframes tvi-fc-float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes tvi-fc-float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.tvi-ph-fc-icon {
  font-size: 22px;
  color: #0099ff;
}
.tvi-ph-fc-green {
  color: #25d366 !important;
}
.tvi-ph-fc-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.tvi-ph-fc-sub {
  font-size: 11px;
  color: #7a9bbd;
}
.tvi-ph-intern-pill {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1a2b4a, #0d1f3c);
  border: 1px solid rgba(0, 140, 255, 0.3);
  color: #5bbcff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: tvi-fc-float1 6s ease-in-out infinite;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.25s;
}
.tvi-ph-intern-pill:hover {
  background: linear-gradient(135deg, #005ce6, #0088ff);
  color: #fff !important;
}
@media (max-width: 1100px) {
  .tvi-ph-heading {
    font-size: 44px;
    line-height: 58px;
  }
  .tvi-ph-img {
    width: 380px;
  }
  .tvi-ph-img-ring {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 900px) {
  .tvi-ph-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .tvi-ph-heading {
    font-size: 38px;
    line-height: 52px;
  }
  .tvi-ph-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .tvi-ph-tags,
  .tvi-ph-cta-row {
    justify-content: center;
  }
  .tvi-ph-stats {
    margin-top: 40px;
}
  .tvi-ph-fc1 {
    left: 0;
  }
  .tvi-ph-fc2 {
    right: 0;
    top: 100px;
    height: fit-content;
}
  .tvi-ph-intern-pill {
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
  }
}
/* ── 768px ── */
@media (max-width: 768px) {
  .tvi-ph-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
  }
  .tvi-ph-stat {
    padding: 16px 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .tvi-ph-stat:nth-child(3),
  .tvi-ph-stat:nth-child(5) {
    border-right: none;
  }
  .tvi-ph-stat:nth-child(4),
  .tvi-ph-stat:nth-child(5) {
    border-bottom: none;
  }
  .tvi-ph-stat-sep { display: none; }
  .tvi-ph-stat-num { font-size: 22px; }
  .tvi-ph-stat-lbl { font-size: 10px; }
}

/* ── 767px ── */
@media (max-width: 767px) {
  .tvi-ph-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .tvi-ph-heading {
    font-size: 30px;
    line-height: 42px;
  }
  .tvi-ph-sub {
    font-size: 15px;
  }
  .tvi-ph-img {
    width: 280px;
  }
  .tvi-ph-img-ring {
    width: 300px;
    height: 300px;
  }
  .tvi-ph-btn-primary {
    font-size: 14px;
    padding: 12px 22px;
  }
  .tvi-ph-btn-outline,
  .tvi-ph-btn-wa {
    font-size: 13px;
    padding: 11px 18px;
  }
  .tvi-ph-intern-pill {
    margin-top: 16px;
  }
  .tvi-ph-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
  }
  .tvi-ph-stat {
    padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .tvi-ph-stat:nth-child(3),
  .tvi-ph-stat:nth-child(5) {
    border-right: none;
  }
  .tvi-ph-stat:nth-child(4),
  .tvi-ph-stat:nth-child(5) {
    border-bottom: none;
  }
  .tvi-ph-stat-sep { display: none; }
  .tvi-ph-stat-num { font-size: 21px; }
  .tvi-ph-stat-lbl { font-size: 10px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .tvi-ph-heading {
    font-size: 26px;
    line-height: 36px;
  }
  .tvi-ph-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .tvi-ph-stat:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .tvi-ph-stat:nth-child(2),
  .tvi-ph-stat:nth-child(4) {
    border-right: none;
  }
  .tvi-ph-stat:nth-child(3),
  .tvi-ph-stat:nth-child(4) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .tvi-ph-stat:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
  .tvi-ph-stat-num { font-size: 20px; }
  .tvi-ph-stat-lbl { font-size: 10px; }
}

/* ── 375px ── */
@media (max-width: 375px) {
  .tvi-ph-heading {
    font-size: 22px;
    line-height: 32px;
  }
  .tvi-ph-sub {
    font-size: 13px;
  }
  .tvi-ph-stats {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }
  .tvi-ph-stat {
    padding: 12px 6px;
  }
  .tvi-ph-stat-num { font-size: 18px; }
  .tvi-ph-stat-plus { font-size: 15px; }
  .tvi-ph-stat-lbl { font-size: 9px; letter-spacing: 0.3px; }
  .tvi-ph-btn-primary {
    font-size: 12px;
    padding: 10px 16px;
  }
  .tvi-ph-btn-outline,
  .tvi-ph-btn-wa {
    font-size: 11px;
    padding: 9px 14px;
  }
}

/* ── 414px (original kept) ── */
@media (max-width: 414px) {
  .tvi-ph-heading br { display: none; }
  .tvi-ph-btn-primary { font-size: 12px; padding: 10px 20px; }
  .tvi-ph-sub { font-size: 12px; }
  .tvi-ph-tag { font-size: 10px; padding: 6px 8px; }
  .tvi-ph-badge { font-size: 10px; padding: 6px 15px; }
}
/* ===================================================
   LEFT SIDE FIXED TOGGLE PANEL — tvi-side-*
   =================================================== */

.tvi-side-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
}

/* Toggle Tab */
.tvi-side-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(180deg, #005ce6, #0088ff);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 62px;
  padding: 18px 0;
  border-radius: 0 10px 10px 0;
  box-shadow: 4px 0 20px rgba(0, 100, 255, 0.4);
  transition: width 0.25s, background 0.25s;
  outline: none;
  position: relative;
  z-index: 2;
  writing-mode: horizontal-tb;
}
.tvi-side-tab:hover {
  background: linear-gradient(180deg, #0044cc, #0077ee);
  width: 66px;
}
.tvi-side-tab-icon {
  font-size: 18px;
  line-height: 1;
  animation: tvi-bolt-pulse 2s ease-in-out infinite;
}
@keyframes tvi-bolt-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.7; }
}
.tvi-side-tab-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}

/* Drawer */
.tvi-side-drawer {
  background: #0a1628;
  border: 1px solid rgba(0, 140, 255, 0.2);
  border-left: none;
  border-radius: 0 16px 16px 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  box-shadow: 6px 0 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tvi-side-panel.tvi-side-open .tvi-side-drawer {
  width: 300px;
  opacity: 1;
}

/* Drawer header */
.tvi-side-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.tvi-side-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 8px #00d4ff;
  flex-shrink: 0;
  animation: tvi-dot-blink 1.6s ease-in-out infinite;
}
.tvi-side-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #94a7c4;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.tvi-side-close:hover {
  background: rgba(255, 60, 60, 0.2);
  color: #ff6b6b;
}

/* Buttons list */
.tvi-side-links {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tvi-side-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.tvi-side-btn:hover {
  transform: translateX(4px);
}
.tvi-side-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.2s;
}
.tvi-side-btn:hover .tvi-side-btn-icon {
  transform: scale(1.12);
}
.tvi-side-btn-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tvi-side-btn-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.tvi-side-btn-sub {
  font-size: 11px;
  color: #7a9bbd;
  margin-top: 2px;
}
.tvi-side-btn-arrow {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.tvi-side-btn:hover .tvi-side-btn-arrow {
  color: rgba(255, 255, 255, 0.7);
  transform: translateX(3px);
}

/* Individual button accent colors */
.tvi-side-btn-blue .tvi-side-btn-icon  { background: linear-gradient(135deg, #005ce6, #0099ff); }
.tvi-side-btn-blue:hover               { background: rgba(0, 100, 255, 0.12); border-color: rgba(0, 140, 255, 0.35); }

.tvi-side-btn-purple .tvi-side-btn-icon { background: linear-gradient(135deg, #6a0dad, #a855f7); }
.tvi-side-btn-purple:hover              { background: rgba(120, 60, 200, 0.12); border-color: rgba(160, 80, 255, 0.35); }

.tvi-side-btn-green .tvi-side-btn-icon  { background: linear-gradient(135deg, #1aad54, #25d366); }
.tvi-side-btn-green:hover               { background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.35); }

.tvi-side-btn-orange .tvi-side-btn-icon { background: linear-gradient(135deg, #e65c00, #f9aa00); }
.tvi-side-btn-orange:hover              { background: rgba(255, 140, 0, 0.1); border-color: rgba(255, 160, 0, 0.35); }

.tvi-side-btn-cyan .tvi-side-btn-icon   { background: linear-gradient(135deg, #0077aa, #00c8e6); }
.tvi-side-btn-cyan:hover                { background: rgba(0, 180, 220, 0.1); border-color: rgba(0, 200, 230, 0.35); }

/* Footer */
.tvi-side-footer {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tvi-side-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tvi-side-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: #94a7c4;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.tvi-side-contact-item:hover { color: #fff; }
.tvi-side-contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: #fff;
}
.tvi-sci-green { background: linear-gradient(135deg, #1aad54, #25d366); }
.tvi-sci-blue  { background: linear-gradient(135deg, #005ce6, #0099ff); }
.tvi-side-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tvi-ss {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff !important;
  text-decoration: none !important;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.tvi-ss:hover { transform: translateY(-3px); opacity: 1; }
.tvi-ss-fb { background: #1877f2; }
.tvi-ss-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tvi-ss-li { background: #0077b5; }
.tvi-ss-tw { background: #1da1f2; }
.tvi-ss-yt { background: #ff0000; }

/* Mobile: move to bottom-right on very small screens */
@media (max-width: 767px) {
  .tvi-side-panel {
    top: auto;
    bottom: 20px;
    transform: none;
  }
  .tvi-side-tab {
    border-radius: 0px 10px 10px 0;
  }
  .tvi-side-panel.tvi-side-open .tvi-side-drawer {
    width: 260px;
  }
}
