/* ========== Social icon polish ========== */
.social-row {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}

.social-row a:hover {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.35));
}

.social-icon-img,
.social-row a[aria-label="Instagram"] .social-icon-img,
.social-row svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ========== Phone vanity number tooltip ========== */
.phone-link {
  position: relative;
}

.phone-link[data-dial]:hover::after {
  content: attr(data-dial);
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 8px;
  background: #0a0d12;
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 100;
  pointer-events: none;
}
