    /* Common button styles */
    .floating-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 26px;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      position: fixed;
      right: 20px;
      z-index: 99999 !important;
      transition: transform 0.2s ease-in-out;
    }
    .floating-btn:hover {
      transform: scale(1.15);
    }

    /* WhatsApp button */
    .whatsapp {
      background-color: #25D366;
      bottom: 100px;
    }

    /* Call button */
    .call {
      background-color: #d32f2f;
      bottom: 200px; /* Above WhatsApp */
    }

    /* SVG inside buttons */
    .floating-btn svg {
      width: 28px;
      height: 28px;
      fill: white;
    }
    
    /* Hide on mobile devices */
@media (max-width: 768px) {
  .floating-btn {
    display: none !important;
  }
}