/* Mobile Sticky Contact Bar */
.mobile-contact-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.contact-bar {
  display: flex;
  padding: 0;
}

.contact-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border-right: 1px solid #e5e5e5;
}

.contact-item:last-child {
  border-right: none;
}

.contact-item.phone {
  background: #f8f9fa;
  color: #2c5aa0;
}

.contact-item.phone:hover {
  background: #2c5aa0;
  color: white;
}

.contact-item.whatsapp {
  background: #f8f9fa;
  color: #25d366;
}

.contact-item.whatsapp:hover {
  background: #25d366;
  color: white;
}

.contact-item i {
  font-size: 18px;
}

.contact-item span {
  color: inherit;
  font-weight: 500;
}