
  .floating-contact {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }

  .float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
  }

  .float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }

  /* Button colors */
  .call {
    background: linear-gradient(135deg, #28a745, #1e7e34);
  }

  .whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
  }

  /* Tooltip styling */
  .float-btn::before {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transform: translateY(-50%);
    top: 50%;
    transition: opacity 0.3s, right 0.3s;
  }

  .float-btn:hover::before {
    opacity: 1;
    right: 80px;
  }

  /* Mobile optimization */
  @media (max-width: 768px) {
    .floating-contact {
      right: 15px;
      bottom: 20px;
      gap: 10px;
    }

    .float-btn {
      width: 50px;
      height: 50px;
      font-size: 22px;
    }

    .float-btn::before {
      display: none; /* Hide tooltips on small screens */
    }
  }

