/* Contact Icons Styling */
.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-method:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-method svg {
  flex-shrink: 0;
  color: #007bff;
}

.contact-method a {
  color: #333;
  text-decoration: none;
  font-size: 0.95em;
}

.contact-method a:hover {
  color: #007bff;
}

.social-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #eee;
}

.social-links h4 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.1em;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  color: #555;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icons a:nth-child(1):hover {
  color: #1877f2;
  background: #e7f3ff;
}

.social-icons a:nth-child(2):hover {
  color: #e4405f;
  background: #ffe7ec;
}

.social-icons a:nth-child(3):hover {
  color: #000;
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .contact-method {
    font-size: 0.9em;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }
}
