.contact-icon-group {
  position: fixed;
  left: 0;
  top: 60%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* 🔶 Icon Base */
.contact-icon {
  display: flex;
  align-items: center;
  background-color: #ffcc00;
  color: #092c5c !important;
  padding: 12px;
  border-radius: 30px;
  width: 40px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  text-decoration: none;
}

/* 🧭 Icon Shape */
.contacts-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* 🏷️ Hidden Text Label */
.label {
  margin-left: 10px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ✨ Hover Expands All */
.contact-icon:hover,
.contact-icon:focus {
  width: 140px;
  justify-content: flex-start;
  padding-left: 16px;
}

.contact-icon:hover .label,
.contact-icon:focus .label {
  opacity: 1;
}
