/* ═══════════════════════════════════════════════
   footer.css — Footer Styles
   ═══════════════════════════════════════════════ */

.pv-footer {
  background: #1e1e1e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 80px;
}

.pv-footer-desc {
  color: var(--pv-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.pv-footer-social {
  display: flex;
  gap: 12px;
}
.pv-footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pv-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.pv-footer-social a:hover {
  background: var(--pv-blue);
  border-color: var(--pv-blue);
  color: var(--pv-white);
  box-shadow: 0 4px 16px rgb(246 74 74 / 40%);
}

.pv-footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv-white);
  margin-bottom: 20px;
}

.pv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-footer-links li a {
  font-size: 1.2rem;
  color: var(--pv-text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pv-footer-links li a:hover {
  color: var(--pv-white);
  padding-left: 4px;
}

.pv-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pv-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--pv-text-muted);
}
.pv-footer-contact li i {
  color: var(--pv-blue);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.pv-footer-contact li a {
  color: var(--pv-text-muted);
}
.pv-footer-contact li a:hover {
  color: var(--pv-blue);
}

.pv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pv-footer-bottom p {
  margin: 0;
  color: var(--pure-white);
}

.pv-footer-legal {
  display: flex;
  gap: 20px;
}
.pv-footer-legal a {
  color: var(--pure-white);
}
.pv-footer-legal a:hover {
  color: var(--pv-blue);
}
