 .floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 250px;
    width: 100%;
  }

  .floating-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .floating-buttons .whatsapp {
    background-color: #25D366;
  }

  .floating-buttons .call {
    background-color: #007bff;
  }

  .floating-buttons i {
    margin-right: 8px;
    font-size: 1.2rem;
  }

  @media (max-width: 576px) {
    .floating-buttons {
      right: 10px;
      left: 10px;
      flex-direction: row;
      justify-content: space-between;
    }

    .floating-buttons a {
      flex: 1;
      font-size: 0.9rem;
    }