/* Contact Icons Styling */
.contact-icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 10px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-link span {
  color: #0d6efd;
  font-weight: 500;
  margin-top: 10px;
}

.contact-link:hover .contact-icon-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-link:hover span {
  color: #0a58ca;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .contact-icon-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .contact-icon {
    width: 30px;
    height: 30px;
  }
}

/* Print styles */
@media print {
  .btn, .contact-link {
    display: none !important;
  }
}