
/* ================= FLOAT SOCIAL ================= */

.social-wrapper {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
}

/* TOGGLE BUTTON */
.social-toggle {
  width: 55px;
  height: 55px;
  background: #1ec129;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  cursor: pointer;

  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  font-size: 20px;

  transition: 0.3s;
}

.social-toggle:hover {
  background: #2e7d32;
  transform: scale(1.1);
}

/* ICON CONTAINER */
.social-fixed {
  position: absolute;
  bottom: 70px;
  right: 15%;

  display: flex;
  flex-direction: column;
  gap: 12px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);

  transition: 0.3s ease;
}

/* SHOW ON CLICK */
.social-fixed.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ICON STYLE */
.social-fixed .icon {
  width: 45px;
  height: 45px;
text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: #fff;
  font-size: 18px;

  transition: 0.3s;
}

/* COLORS */
.icon.phone { background: #455a64; }
.icon.gmail { background: #ea4335; }
.icon.whatsapp { background: #25D366; }
.icon.insta { background: #E1306C; }
.icon.facebook { background: #1877f2; }
.icon.location {
  background: #d32f2f; /* 🔥 red for maps */
}
/* HOVER */
.social-fixed .icon:hover {
  transform: scale(1.1);
}
/* ================= LOCATION DROPDOWN (PERFECT ALIGN LEFT + CENTER) ================= */

.location-wrapper {
  position: relative;
}

/* DROPDOWN BOX */
.location-wrapper .location-dropdown {
  position: absolute;

  right: 55px;              /* ⬅ move more LEFT */
  top: 50%;                 /* ⬆ center vertically */
  transform: translateY(-50%) translateX(10px);

  width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  opacity: 0;
  pointer-events: none;

  transition: 0.3s ease;
  z-index: 2000;
}

/* SHOW ON HOVER */
.location-wrapper:hover .location-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

/* LINKS */
.location-wrapper .location-dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: #2c3e50;
  border-bottom: 1px solid #f1f1f1;

  white-space: nowrap;
}

/* HOVER */
.location-wrapper .location-dropdown a:hover {
  background: #e8f5e9;
  color: #2E7D32;
  padding-left: 22px;
}

/* REMOVE LAST BORDER */
.location-wrapper .location-dropdown a:last-child {
  border-bottom: none;
}

/* 🔥 HOVER BRIDGE (FIX GAP) */
.location-wrapper::after {
  content: "";
  position: absolute;
  right: 50px;
  top: 0;
  width: 25px;
  height: 100%;
}

/* POINTER */
.location-toggle {
  cursor: pointer;
}

/* ===== REMOVE UNDERLINES FROM LOCATION DROPDOWN ===== */
.location-wrapper .location-dropdown a {
  text-decoration: none !important;
}
.location-wrapper .location-dropdown a,
.location-wrapper .location-dropdown a:link,
.location-wrapper .location-dropdown a:visited,
.location-wrapper .location-dropdown a:hover,
.location-wrapper .location-dropdown a:active {
  text-decoration: none !important;
}