/* ========== CONTACT BUTTON IN NAVBAR ========== */

.contact-btn {
  /* Same styling as other navbar action buttons */
  position: relative;
  transition: all 0.3s ease;
}

.contact-btn i {
  font-size: 1.125rem;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

/* Add subtle badge/indicator if needed */
.contact-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-btn.has-notification::after {
  opacity: 1;
}

/* Make sure it aligns with other action buttons */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-action-btn.contact-btn {
  /* Ensure consistent sizing */
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-btn {
    min-width: 36px;
    height: 36px;
  }

  .contact-btn i {
    font-size: 1rem;
  }
}
