.social-wrapper {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TOGGLE BUTTON */
.social-toggle {
  width: 55px;
  height: 55px;
  background: #fbdc30; /* Modern Blue */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* CONTAINER FOR ICONS */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.4s ease;
}

/* WHEN ACTIVE */
.social-wrapper.active .social-icons {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.social-wrapper.active #toggleIcon {
  transform: rotate(25deg); 
} 

/* INDIVIDUAL BUTTONS */
.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff !important; /* Forces icon to be white */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

/* COLORS (Gradients for a premium look) */
.call {
  background: linear-gradient(135deg, #007bff, #0056b3);
}
.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.email {
  background: linear-gradient(135deg, #ff5e57, #d93d35);
}
.location {
  background: linear-gradient(135deg, #ff9800, #e68900);
}
.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-btn:hover {
  transform: scale(1.1);
}
